ip for click to play

This commit is contained in:
Alessandro Autiero
2022-10-25 19:42:09 +02:00
parent 691cd53f26
commit ef7f34e0e3
26 changed files with 509 additions and 725 deletions

View File

@@ -52,5 +52,13 @@ String? checkDll(String? text) {
return "This file is not a dll";
}
return null;
}
String? checkMatchmaking(String? text) {
if (text == null || text.isEmpty) {
return "Empty hostname";
}
return null;
}