[Hotfix] Hide install theme when loader does not support themes (#47)
This commit is contained in:
parent
5148fdb15f
commit
ba20db27d9
2 changed files with 2 additions and 2 deletions
|
@ -23,7 +23,7 @@ export default () => after("default", ForumPostLongPressActionSheet, ([{ thread
|
|||
let postType: string;
|
||||
if (thread.parent_id === PLUGINS_CHANNEL_ID) {
|
||||
postType = "Plugin";
|
||||
} else if (thread.parent_id === THEMES_CHANNEL_ID) {
|
||||
} else if (thread.parent_id === THEMES_CHANNEL_ID && window.__vendetta_loader?.features.themes) {
|
||||
postType = "Theme";
|
||||
} else return;
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ export default () => after("showSimpleActionSheet", showSimpleActionSheet, ([{ k
|
|||
let urlType: string;
|
||||
if (url.startsWith(PROXY_PREFIX)) {
|
||||
urlType = "Plugin";
|
||||
} else if (url.endsWith(".json")) {
|
||||
} else if (url.endsWith(".json") && window.__vendetta_loader?.features.themes) {
|
||||
urlType = "Theme";
|
||||
} else return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue