diff --git a/src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs b/src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs index f04987c5e..bef9f4c41 100644 --- a/src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs +++ b/src/NzbDrone.Core.Test/ParserTests/QualityParserFixture.cs @@ -176,6 +176,7 @@ namespace NzbDrone.Core.Test.ParserTests [TestCase("[Kaylith] Isshuukan Friends Specials - 01 [BD 1080p FLAC][429FD8C7].mkv", false)] [TestCase("[Zurako] Log Horizon - 01 - The Apocalypse (BD 1080p AAC) [7AE12174].mkv", false)] [TestCase("WEEDS.S03E01-06.DUAL.1080p.Blu-ray.AC3.-HELLYWOOD.avi", false)] + [TestCase("[Coalgirls]_Durarara!!_01_(1920x1080_Blu-ray_FLAC)_[8370CB8F].mkv", false)] public void should_parse_bluray1080p_quality(string title, bool proper) { ParseAndVerifyQuality(title, Quality.Bluray1080p, proper); diff --git a/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs b/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs index 4d58a8e17..d0d5f9c0e 100644 --- a/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs +++ b/src/NzbDrone.Core/Notifications/PushBullet/PushBullet.cs @@ -21,14 +21,14 @@ namespace NzbDrone.Core.Notifications.PushBullet public override void OnGrab(string message) { - const string title = "Episode Grabbed"; + const string title = "NzbDrone - Episode Grabbed"; _proxy.SendNotification(title, message, Settings.ApiKey, Settings.DeviceId); } public override void OnDownload(DownloadMessage message) { - const string title = "Episode Downloaded"; + const string title = "NzbDrone - Episode Downloaded"; _proxy.SendNotification(title, message.Message, Settings.ApiKey, Settings.DeviceId); } diff --git a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs index 6071177fd..4683c96ad 100644 --- a/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs +++ b/src/NzbDrone.Core/Notifications/PushBullet/PushBulletProxy.cs @@ -58,7 +58,7 @@ namespace NzbDrone.Core.Notifications.PushBullet { try { - const string title = "Test Notification"; + const string title = "NzbDrone - Test Notification"; const string body = "This is a test message from NzbDrone"; SendNotification(title, body, settings.ApiKey, settings.DeviceId);