summaryrefslogtreecommitdiff
path: root/backend/plugin.py
diff options
context:
space:
mode:
authorJonas Dellinger <jonas@dellinger.dev>2022-05-25 21:35:03 +0200
committerJonas Dellinger <jonas@dellinger.dev>2022-05-25 21:35:03 +0200
commitd23f1ac56c6749e214303c01adec20f2d4a2d0dd (patch)
tree9f29438eb86b89a40c28adcfd8846094345de105 /backend/plugin.py
parent74438a31458af8bddd08d90eacc6d63677bab844 (diff)
downloaddecky-loader-d23f1ac56c6749e214303c01adec20f2d4a2d0dd.tar.gz
decky-loader-d23f1ac56c6749e214303c01adec20f2d4a2d0dd.zip
Added support for static assets, remove frontend_bundle field
Diffstat (limited to 'backend/plugin.py')
-rw-r--r--backend/plugin.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/backend/plugin.py b/backend/plugin.py
index db335225..7d3f36f3 100644
--- a/backend/plugin.py
+++ b/backend/plugin.py
@@ -26,7 +26,6 @@ class PluginWrapper:
self.name = json["name"]
self.author = json["author"]
- self.frontend_bundle = json["frontend_bundle"]
self.flags = json["flags"]
self.passive = not path.isfile(self.file)