mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-21 22:05:43 -04:00
Fixed: Avoid zero-length array memory allocations
This commit is contained in:
@@ -23,7 +23,7 @@ namespace NzbDrone.Core.Notifications.Pushover
|
||||
public PushoverSettings()
|
||||
{
|
||||
Priority = 0;
|
||||
Devices = new string[] { };
|
||||
Devices = System.Array.Empty<string>();
|
||||
}
|
||||
|
||||
//TODO: Get Pushover to change our app name (or create a new app) when we have a new logo
|
||||
|
||||
Reference in New Issue
Block a user