Skip to content

Commit 4dfc87b

Browse files
authored
fix streams with custom agent (#50)
1 parent dfaf257 commit 4dfc87b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

fly.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ app = 'plexio'
22
primary_region = 'iad'
33

44
[build]
5-
image = 'ghcr.io/vanchaxy/plexio:0.1.13'
5+
image = 'ghcr.io/vanchaxy/plexio:0.1.14'
66

77
[env]
88
CACHE_TYPE = 'redis'

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frontend",
33
"private": true,
4-
"version": "0.1.13",
4+
"version": "0.1.14",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --host",

plexio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.13'
1+
__version__ = '0.1.14'

plexio/models/plex.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from pydantic import BaseModel, ConfigDict, Field
66

7-
from plexio.models.utils import get_flag_emoji, guid_to_plexio_id, to_camel
7+
from plexio.models.utils import get_flag_emoji, guid_to_plexio_id, to_camel, plexio_id_to_guid
88

99

1010
class Resolution(str, Enum):
@@ -105,7 +105,7 @@ def to_stremio_meta(self, configuration):
105105
from plexio.models.stremio import StremioMeta
106106

107107
return StremioMeta(
108-
id=self.guid,
108+
id=guid_to_plexio_id(self.guid),
109109
type=PLEX_TO_STREMIO_MEDIA_TYPE[self.type],
110110
name=self.title,
111111
releaseInfo=self.get_year(),

0 commit comments

Comments
 (0)