mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
updated Mal string and fixed keyerror
This commit is contained in:
parent
49965d2bc3
commit
1c0fe5bdc9
4 changed files with 4 additions and 3 deletions
2
.github/workflows/develop-arm7.yml
vendored
2
.github/workflows/develop-arm7.yml
vendored
|
@ -1,4 +1,4 @@
|
|||
name: Docker Develop Release
|
||||
name: Docker Develop Release Arm7
|
||||
|
||||
on:
|
||||
push:
|
||||
|
|
|
@ -57,6 +57,7 @@ Before posting on GitHub about an enhancement, error, or configuration question
|
|||
## Wiki Table of Contents
|
||||
- [Home](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Home)
|
||||
- [Installation](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Installation)
|
||||
- [Run Commands & Environmental Variables](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Run-Commands-&-Environmental-Variables)
|
||||
- [Local Walkthrough](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Local-Walkthrough)
|
||||
- [Docker Walkthrough](https://github.com/meisnate12/Plex-Meta-Manager/wiki/Docker-Walkthrough)
|
||||
- [unRAID Walkthrough](https://github.com/meisnate12/Plex-Meta-Manager/wiki/unRAID-Walkthrough)
|
||||
|
|
|
@ -414,7 +414,7 @@ class ConfigFile:
|
|||
except Failed as e:
|
||||
self.errors.append(e)
|
||||
logger.error(e)
|
||||
logger.info(f"My Anime List Connection {'Failed Continuing as Guest ' if self.MyAnimeList is None else 'Successful'}")
|
||||
logger.info(f"AniDB Connection {'Failed Continuing as Guest ' if self.MyAnimeList is None else 'Successful'}")
|
||||
if self.AniDB is None:
|
||||
self.AniDB = AniDB(self, None)
|
||||
|
||||
|
|
|
@ -945,7 +945,7 @@ def run_playlists(config):
|
|||
else:
|
||||
server_check = pl_library.PlexServer.machineIdentifier
|
||||
|
||||
sync_to_users = config.general["playlist_sync_to_user"]
|
||||
sync_to_users = config.general["playlist_sync_to_users"]
|
||||
if "sync_to_users" in playlist_attrs:
|
||||
sync_to_users = playlist_attrs["sync_to_users"]
|
||||
elif "sync_to_user" in playlist_attrs:
|
||||
|
|
Loading…
Reference in a new issue