mirror of
https://github.com/Zaarrg/stremio-community-v5.git
synced 2026-04-21 00:52:01 +00:00
Fix missing Debug if statment + better extensions logos
This commit is contained in:
parent
e09cbd2485
commit
af581f1f04
2 changed files with 5 additions and 2 deletions
|
|
@ -2,7 +2,7 @@
|
|||
"ublock": {
|
||||
"name": "uBlock Origin",
|
||||
"extension_name": "ublock",
|
||||
"logo": "https://lh3.googleusercontent.com/rrgyVBVte7CfjjeTU-rCHDKba7vtq-yn3o8-10p5b6QOj_2VCDAO3VdggV5fUnugbG2eDGPPjoJ9rsiU_tUZBExgLGc=s60",
|
||||
"logo": "https://upload.wikimedia.org/wikipedia/commons/thumb/0/05/UBlock_Origin.svg/2048px-UBlock_Origin.png",
|
||||
"description": "uBlock Origin is not just an “ad blocker“, it's a wide-spectrum content blocker with CPU and memory efficiency as a primary feature.",
|
||||
"types": ["Browser Extension", "other"],
|
||||
"behaviorHints": {
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
"premid": {
|
||||
"name": "PreMiD",
|
||||
"extension_name": "premid",
|
||||
"logo": "https://premid.app/_ipx/loading_lazy,f_webp,s_450x150/images/logo-wordmark-blue.png",
|
||||
"logo": "https://cdn.rcd.gg/PreMiD/websites/P/PreMiD/assets/logo.png",
|
||||
"description": "PreMiD is a simple, configurable utility that allows you to show what you're doing on the web in your Discord now playing status / Discord Rich Presence ",
|
||||
"types": ["Browser Extension", "other"],
|
||||
"behaviorHints": {
|
||||
|
|
|
|||
|
|
@ -296,6 +296,9 @@ static void SetupWebMessageHandler()
|
|||
HRESULT hr = args->get_MenuItems(&items);
|
||||
if (FAILED(hr) || !items) return hr;
|
||||
|
||||
#ifdef DEBUG_BUILD
|
||||
return S_OK; //DEV TOOLS DEBUG ONLY
|
||||
#endif
|
||||
|
||||
// Get current URL
|
||||
wil::unique_cotaskmem_string currentUri;
|
||||
|
|
|
|||
Loading…
Reference in a new issue