mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-31 03:50:08 -07:00
Enable the mobile ntoifications inside Ombi
This commit is contained in:
parent
5e25e16649
commit
f426551222
3 changed files with 11 additions and 3 deletions
|
@ -39,7 +39,7 @@ namespace Ombi.Notifications.Agents
|
|||
|
||||
protected override bool ValidateConfiguration(MobileNotificationSettings settings)
|
||||
{
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
protected override async Task NewRequest(NotificationOptions model, MobileNotificationSettings settings)
|
||||
|
@ -211,7 +211,7 @@ namespace Ombi.Notifications.Agents
|
|||
|
||||
protected async Task Send(List<string> playerIds, NotificationMessage model, MobileNotificationSettings settings)
|
||||
{
|
||||
if (!playerIds.Any())
|
||||
if (playerIds == null || !playerIds.Any())
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue