Browse Source

Update library handle

pull/51/merge
Ruud 14 years ago
parent
commit
106ff4fe11
  1. 5
      couchpotato/core/plugins/library/main.py

5
couchpotato/core/plugins/library/main.py

@ -41,8 +41,9 @@ class LibraryPlugin(Plugin):
db.commit() db.commit()
# Update library info # Update library info
if update_after: if update_after is not False:
fireEventAsync('library.update', identifier = l.identifier, default_title = attrs.get('title', '')) handle = fireEventAsync if update_after is 'async' else fireEvent
handle('library.update', identifier = l.identifier, default_title = attrs.get('title', ''))
return l.to_dict(self.default_dict) return l.to_dict(self.default_dict)

Loading…
Cancel
Save