change the name of tunnel service to HiddifyService

This commit is contained in:
Hiddify
2024-02-03 16:54:21 +01:00
parent 3950d3349f
commit d331991575
3 changed files with 10 additions and 7 deletions

View File

@@ -170,11 +170,11 @@ class ConnectionPlatformSourceImpl
fullPath = "libcore";
}
if (Platform.isWindows) {
fullPath = p.join(fullPath, "hiddify-service.exe");
fullPath = p.join(fullPath, "HiddifyService.exe");
} else if (Platform.isMacOS) {
fullPath = p.join(fullPath, "hiddify-service");
fullPath = p.join(fullPath, "HiddifyService");
} else {
fullPath = p.join(fullPath, "hiddify-service");
fullPath = p.join(fullPath, "HiddifyService");
}
return "$binFolder/$fullPath";