Add notification image option for iOS Tautulli Remote App

This commit is contained in:
JonnyWong16 2023-08-02 16:51:20 -07:00
parent b984a99d51
commit e2cb15ef49
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -3967,6 +3967,14 @@ class TAUTULLIREMOTEAPP(Notifier):
2: 'Large image (Non-expandable text)' 2: 'Large image (Non-expandable text)'
} }
}) })
elif platform == 'ios':
config_option.append({
'label': 'Include Poster Image',
'value': self.config['notification_type'],
'name': 'remoteapp_notification_type',
'description': 'Include a poster with the notifications.',
'input_type': 'checkbox'
})
return config_option return config_option