use correct tagblocked image

This commit is contained in:
byte[] 2019-11-30 13:14:01 -05:00
parent ff27a0992f
commit 72121ca057

View file

@ -80,8 +80,7 @@ function initializeFilters() {
} }
function unmarshal(data) { function unmarshal(data) {
try { return JSON.parse(data); } try { return JSON.parse(data); } catch (_) { return data; }
catch (_) { return data; }
} }
function loadBooruData() { function loadBooruData() {
@ -104,7 +103,7 @@ function loadBooruData() {
function BooruOnRails() { function BooruOnRails() {
this.apiEndpoint = '/api/v2/'; this.apiEndpoint = '/api/v2/';
this.hiddenTag = '/tagblocked.svg'; this.hiddenTag = '/images/tagblocked.svg';
this.tagsVersion = 5; this.tagsVersion = 5;
} }