From 7db7a44e4c969bb6b0127f90ef46e1724d7018aa Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Sat, 19 Mar 2022 14:29:03 -0400 Subject: [PATCH] [12] fix uploading themes --- VERSION | 2 +- modules/builder.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 049ad74d..4fd70d2f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.16.2-develop11 +1.16.2-develop12 diff --git a/modules/builder.py b/modules/builder.py index 203c8b6c..ef34f9e2 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -2520,9 +2520,9 @@ class CollectionBuilder: self.library.upload_images(self.obj, poster=self.collection_poster, background=self.collection_background) if self.url_theme: - self.library.upload_theme(url=self.url_theme) + self.library.upload_theme(self.obj, url=self.url_theme) elif self.file_theme: - self.library.upload_theme(filepath=self.file_theme) + self.library.upload_theme(self.obj, filepath=self.file_theme) def sort_collection(self): logger.info("")