From 34956b892094d5744be30a1d07b5e80ddef30c68 Mon Sep 17 00:00:00 2001 From: thsrite Date: Thu, 27 Jun 2024 14:07:16 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E9=85=8D=E7=BD=AE=E4=B8=8D=E9=87=8D?= =?UTF-8?q?=E7=BD=AEbug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/libraryduplicatecheck/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/libraryduplicatecheck/__init__.py b/plugins/libraryduplicatecheck/__init__.py index 90dba56..dfd145e 100644 --- a/plugins/libraryduplicatecheck/__init__.py +++ b/plugins/libraryduplicatecheck/__init__.py @@ -74,8 +74,8 @@ class LibraryDuplicateCheck(_PluginBase): if not self._EMBY_HOST.startswith("http"): self._EMBY_HOST = "http://" + self._EMBY_HOST - _paths = {} - _path_type = {} + self._paths = {} + self._path_type = {} if config.get("path"): for path in str(config.get("path")).split("\n"):