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:
evazion
2017-11-21 10:13:49 -06:00
parent 5ba63733d3
commit 183a7e07e3
2 changed files with 9 additions and 6 deletions

View File

@@ -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 %>