pixiv: fix failbooru when uploading bad pixiv id posts.
Fixes an "incompatible character encodings: UTF-8 and ASCII-8BIT" exception when uploading a deleted Pixiv post. Caused by the Pixiv API error message not having the encoding set to UTF-8.
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
<% if CurrentUser.user.is_builder? && @exception.present? %>
|
||||
<h1><%= @exception.class.to_s %> exception raised</h1>
|
||||
<ul style="font-family: monospace; font-size: 1.2em; list-style-type: none;">
|
||||
<li><%= @exception.message %></li>
|
||||
<li><%= @exception.message.force_encoding("utf-8") %></li>
|
||||
<%- Rails.backtrace_cleaner.clean(@exception.backtrace).each do |b| -%>
|
||||
<li style="list-style-type: none;"><%= b %></li>
|
||||
<%- end -%>
|
||||
@@ -9,5 +9,5 @@
|
||||
<% elsif @error_message %>
|
||||
<p><%= @error_message %></p>
|
||||
<% else %>
|
||||
<p><%= @exception.message %></p>
|
||||
<p><%= @exception.message.force_encoding("utf-8") %></p>
|
||||
<% end %>
|
||||
|
||||
Reference in New Issue
Block a user