* Return HTTP 422 instead of HTTP 500 on "You have already favorited this post" errors. * Log unexpected errors in Ajax requests to the console.
11 lines
299 B
Plaintext
11 lines
299 B
Plaintext
var klass = <%= raw @exception.class.to_s.to_json %>;
|
|
var message = <%= raw @message.to_json %>;
|
|
var backtrace = <%= raw @backtrace.to_json %>;
|
|
|
|
<% if @expected %>
|
|
Danbooru.Utility.error(message);
|
|
<% else %>
|
|
console.error(klass, message, backtrace);
|
|
Danbooru.Utility.error(message);
|
|
<% end %>
|