diff options
| author | tza <marios8543@gmail.com> | 2022-05-10 23:17:09 +0300 |
|---|---|---|
| committer | tza <marios8543@gmail.com> | 2022-05-10 23:17:09 +0300 |
| commit | f3ab0f59897c4cb25a921be8ae3b0a9b55b3d3f4 (patch) | |
| tree | 7ce1b12efc1d0ed33c160167fcc8adf5dedccad1 /plugin_loader/main.py | |
| parent | 0d0e57e35aebdc847fbefe1d791f72cc0979fa5a (diff) | |
| download | decky-loader-f3ab0f59897c4cb25a921be8ae3b0a9b55b3d3f4.tar.gz decky-loader-f3ab0f59897c4cb25a921be8ae3b0a9b55b3d3f4.zip | |
Plugin store button now uses built-in browser
Diffstat (limited to 'plugin_loader/main.py')
| -rw-r--r-- | plugin_loader/main.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugin_loader/main.py b/plugin_loader/main.py index 9ed30760..57cfc52d 100644 --- a/plugin_loader/main.py +++ b/plugin_loader/main.py @@ -7,7 +7,7 @@ CONFIG = { "server_port": int(getenv("SERVER_PORT", "1337")), "live_reload": getenv("LIVE_RELOAD", "1") == "1", "log_level": {"CRITICAL": 50, "ERROR": 40, "WARNING":30, "INFO": 20, "DEBUG": 10}[getenv("LOG_LEVEL", "INFO")], - "store_url": getenv("STORE_URL", "https://plugins.deckbrew.xyz"), + "store_url": getenv("STORE_URL", "https://beta.deckbrew.xyz"), "log_base_events": getenv("LOG_BASE_EVENTS", "0")=="1" } @@ -96,7 +96,7 @@ class PluginManager: "id": 1, "method": "Runtime.evaluate", "params": { - "expression": f"resolveMethodCall({call_id}, {r})", + "expression": f"resolveMethodCall('{call_id}', {r})", "userGesture": True } }, receive=False) @@ -141,4 +141,4 @@ class PluginManager: return run_app(self.web_app, host=CONFIG["server_host"], port=CONFIG["server_port"], loop=self.loop, access_log=None) if __name__ == "__main__": - PluginManager().run()
\ No newline at end of file + PluginManager().run() |
