fix strip_prefix order

This commit is contained in:
dullbananas 2024-05-28 06:57:32 -07:00 committed by GitHub
parent b17634034f
commit a242333701
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -279,13 +279,13 @@ fn after_first_occurence<'a>(s: &'a str, pat: &str) -> &'a str {
}
fn after_skipped_trigger_name(s: &str) -> Option<&str> {
s.strip_prefix("refresh_comment")
.or_else(|| s.strip_prefix("refresh_comment_like"))
.or_else(|| s.strip_prefix("refresh_community"))
s.strip_prefix("refresh_comment_like")
.or_else(|| s.strip_prefix("refresh_comment"))
.or_else(|| s.strip_prefix("refresh_community_follower"))
.or_else(|| s.strip_prefix("refresh_community_user_ban"))
.or_else(|| s.strip_prefix("refresh_post"))
.or_else(|| s.strip_prefix("refresh_community"))
.or_else(|| s.strip_prefix("refresh_post_like"))
.or_else(|| s.strip_prefix("refresh_post"))
.or_else(|| s.strip_prefix("refresh_private_message"))
.or_else(|| s.strip_prefix("refresh_user"))
}