Skip to content

Commit

Permalink
remove startup plugin for 1.9.0 bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedmor committed Jun 5, 2023
1 parent 253aa7a commit 65ce47f
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions octoprint_multicam/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@
from octoprint.events import Events


class MultiCamPlugin(octoprint.plugin.StartupPlugin,
octoprint.plugin.TemplatePlugin,
class MultiCamPlugin(octoprint.plugin.TemplatePlugin,
octoprint.plugin.BlueprintPlugin,
octoprint.plugin.SettingsPlugin,
octoprint.plugin.AssetPlugin,
Expand Down Expand Up @@ -44,10 +43,6 @@ def isClassicWebcamEnabled(self):
plugin = self._plugin_manager.get_plugin("classicwebcam")
return plugin is not None

def on_after_startup(self):
self._logger.info("MultiCam Loaded! (more: %s)" % self._settings.get(["multicam_profiles"]))
# TODO: Need to disable the ClassicWebcam Plugin as this plugin will manage that functionality

def get_settings_version(self):
return 3

Expand Down

0 comments on commit 65ce47f

Please sign in to comment.