mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-10 15:32:38 -07:00
Fix Twitter notification with self-hosted images (Fixes Tautulli/Tautulli-Issues#54)
This commit is contained in:
parent
008e04d5cf
commit
cf73639281
2 changed files with 5 additions and 1 deletions
|
@ -4020,7 +4020,7 @@ class WebInterface(object):
|
|||
@cherrypy.expose
|
||||
def image(self, *args, **kwargs):
|
||||
if args:
|
||||
img_hash = args[0]
|
||||
img_hash = args[0].split('.')[0]
|
||||
|
||||
if img_hash in ('poster', 'cover', 'art'):
|
||||
if img_hash == 'poster':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue