mirror of
https://github.com/ppy/osu.git
synced 2024-12-15 10:42:54 +08:00
Use IndexOf
This commit is contained in:
parent
65644731e0
commit
5e91a3f0f8
@ -130,14 +130,7 @@ namespace osu.Game.Online.Chat
|
||||
/// Checks if <paramref name="message"/> contains <paramref name="username"/>, if not, retries making spaces into underscores.
|
||||
/// </summary>
|
||||
/// <returns>If the <paramref name="message"/> mentions the <paramref name="username"/></returns>
|
||||
public bool IsMentioning(string message, string username)
|
||||
{
|
||||
// sanitize input to handle casing
|
||||
message = message.ToLower();
|
||||
username = username.ToLower();
|
||||
|
||||
return message.Contains(username) || message.Contains(username.Replace(' ', '_'));
|
||||
}
|
||||
public bool IsMentioning(string message, string username) => message.IndexOf(username, StringComparison.OrdinalIgnoreCase) != -1 || message.IndexOf(username.Replace(' ', '_'), StringComparison.OrdinalIgnoreCase) != -1;
|
||||
|
||||
public class PrivateMessageNotification : SimpleNotification
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user