Skip to content

Commit

Permalink
server: Fixup casing
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Dec 31, 2024
1 parent db73baf commit 93f94b0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions server/python/plugin_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ async def createMediaObjectFromUrl(
) -> scrypted_python.scrypted_sdk.types.MediaObject:
return await self.mediaManager.createMediaObjectFromUrl(data, options)

async def get_ffmpeg_path(self):
async def getFFmpegPath(self):
# try to get the ffmpeg path as a value of another variable
# ie, in docker builds:
# export SCRYPTED_FFMPEG_PATH_ENV_VARIABLE=SCRYPTED_RASPBIAN_FFMPEG_PATH
Expand All @@ -492,7 +492,7 @@ async def get_ffmpeg_path(self):

return await self.mediaManager.getFFmpegPath()

async def get_files_path(self):
async def getFilesPath(self):
# Get the value of the SCRYPTED_PLUGIN_VOLUME environment variable
files_path = os.getenv('SCRYPTED_PLUGIN_VOLUME')
if not files_path:
Expand Down

0 comments on commit 93f94b0

Please sign in to comment.