mirror of
https://github.com/jellyfin/jellyfin-plugin-anidb.git
synced 2024-11-26 23:50:26 +00:00
Fix literal string for #56
This commit is contained in:
parent
41fee1796d
commit
bd8940631e
@ -88,7 +88,7 @@ namespace Jellyfin.Plugin.AniDB.Providers
|
||||
a = a.Replace("wo", "w?o", StringComparison.OrdinalIgnoreCase);
|
||||
a = a.Replace("c", "(c|k)", StringComparison.OrdinalIgnoreCase);
|
||||
a = a.Replace("k", "(c|k)", StringComparison.OrdinalIgnoreCase);
|
||||
a = a.Replace("n", "n`?", StringComparison.OrdinalIgnoreCase);
|
||||
a = a.Replace("n", @"n`?", StringComparison.OrdinalIgnoreCase);
|
||||
a = a.Replace("&", "(&|(and))", StringComparison.OrdinalIgnoreCase);
|
||||
a = a.Replace("and", "(&|(and))", StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
@ -236,4 +236,4 @@ namespace Jellyfin.Plugin.AniDB.Providers
|
||||
return AniDbTitleDownloader.TitlesFilePath_;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user