Merge Stable Changesto Master #9

Merged
itdominator merged 30 commits from develop into master 2022-11-29 04:58:09 +00:00
16 changed files with 107 additions and 190 deletions
Showing only changes of commit bdd532060a - Show all commits
.gitignore
plugins
favorites
file_properties
movie_tv_info
searcher
template
vod_thumbnailer
youtube_download
src/versions/solarfm-0.0.1/SolarFM/solarfm

@@ -22,7 +22,7 @@ class EventSystem:
if event_type in self.subscribers: if event_type in self.subscribers:
for fn in self.subscribers[event_type]: for fn in self.subscribers[event_type]:
if data: if data:
if hasattr(data, '__iter__'): if hasattr(data, '__iter__') and not type(data) is str:
fn(*data) fn(*data)
else: else:
fn(data) fn(data)