Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions opi/plugins/plex.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class PlexMediaServer(BasePlugin):
main_query = 'plex'
description = 'Plex Media Server (See OSS alternative jellyfin)'
description = 'Plex Media Server (See OSS alternative jellyfin or emby)'
queries = ['plex', 'plexmediaserver']

@classmethod
Expand All @@ -12,10 +12,10 @@ def run(cls, query):
return

opi.add_repo(
filename = 'PlexRepo',
name = 'PlexRepo',
url = 'https://downloads.plex.tv/repo/rpm/$basearch/',
gpgkey = 'https://downloads.plex.tv/plex-keys/PlexSign.key'
filename = 'plex',
name = 'PlexTv',
url = 'https://repo.plex.tv/rpm/',
gpgkey = 'https://downloads.plex.tv/plex-keys/PlexSign.v2.key'
)

opi.install_packages(['plexmediaserver'])
Expand Down
Loading