mirror of
https://github.com/tommyxchow/frosty.git
synced 2025-05-17 22:46:03 +08:00

* Get 7TV emote set id * Add initial support for 7TV emote set events in chat * Add 7TV emote add/remove alerts in chat * Add author to 7TV events
10 lines
216 B
Dart
10 lines
216 B
Dart
import 'package:frosty/constants.dart';
|
|
|
|
String getReadableName(String displayName, String username) {
|
|
if (!regexEnglish.hasMatch(displayName)) {
|
|
return '$displayName ($username)';
|
|
}
|
|
|
|
return displayName;
|
|
}
|