Skip to content

Commit

Permalink
MediaCollection: fix name for UriHolder overwrite _add_uri_to_set
Browse files Browse the repository at this point in the history
I have honestly no idea, why the code worked before,.
I probably should investigate that
  • Loading branch information
Zocker1999NET committed Jul 2, 2023
1 parent fe35fe5 commit 3ec7322
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/entertainment_decider/models/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -778,7 +778,7 @@ def _uri_set(self) -> Set[str]:
def _clear_uri_set(self) -> None:
self.__uri_set = set()

def _add_single_uri(self, uri: str) -> bool:
def _add_uri_to_set(self, uri: str) -> bool:
mapping: CollectionUriMapping = CollectionUriMapping.get(uri=uri)
if not mapping:
logging.debug(f"Add URI mapping {uri!r} to collection {self.id!r}")
Expand Down

0 comments on commit 3ec7322

Please sign in to comment.