mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
Make extensive use of raw string literals C#11 feature
This commit is contained in:
@@ -13,7 +13,7 @@ namespace NadekoBot.Services;
|
||||
public sealed partial class GoogleApiService : IGoogleApiService, INService
|
||||
{
|
||||
private static readonly Regex
|
||||
_plRegex = new("(?:youtu\\.be\\/|list=)(?<id>[\\da-zA-Z\\-_]*)", RegexOptions.Compiled);
|
||||
_plRegex = new(@"(?:youtu\.be\/|list=)(?<id>[\da-zA-Z\-_]*)", RegexOptions.Compiled);
|
||||
|
||||
|
||||
private readonly YouTubeService _yt;
|
||||
|
Reference in New Issue
Block a user