mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-27 21:47:59 +01:00
use correct tagblocked image
This commit is contained in:
parent
ff27a0992f
commit
72121ca057
1 changed files with 3 additions and 4 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue