From 034fe99f3f5a45147df5185d87c87347c9ff4b09 Mon Sep 17 00:00:00 2001 From: Seregy Date: Thu, 11 Aug 2016 00:38:51 +0300 Subject: [PATCH] Fixed regex for links with just numeric time --- NadekoBot/Modules/Music/Classes/Song.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NadekoBot/Modules/Music/Classes/Song.cs b/NadekoBot/Modules/Music/Classes/Song.cs index d3f5b571..0b0a479a 100644 --- a/NadekoBot/Modules/Music/Classes/Song.cs +++ b/NadekoBot/Modules/Music/Classes/Song.cs @@ -298,7 +298,7 @@ namespace NadekoBot.Modules.Music.Classes if (video == null) // do something with this error throw new Exception("Could not load any video elements based on the query."); - var m = Regex.Match(query, @"\?t=((?\d*)h)?((?\d*)m)?((?\d*)s)?"); + var m = Regex.Match(query, @"\?t=((?\d*)h)?((?\d*)m)?((?\d*)s?)?"); int gotoTime = 0; if (m.Captures.Count > 0) {