Skip to content

Commit 66f1c7c

Browse files
authored
Merge pull request #131 from xgi/feature/113-keep-epid-on-reload
retain episode ids when feeds are reloaded fixes #113
2 parents b731bc2 + 89e79f7 commit 66f1c7c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

castero/episode.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,12 @@ def check_downloaded(self) -> bool:
171171
return self._downloaded
172172

173173
def replace_from(self, episode) -> None:
174-
"""Replace user-specific metadata from the given episode.
174+
"""Replace metadata from the given episode.
175175
176176
Args:
177177
episode: the source Episode
178178
"""
179+
self._ep_id = episode._ep_id
179180
self._played = episode._played
180181

181182
@property

0 commit comments

Comments
 (0)