fly 1 year ago
parent
commit
6641657881
1 changed files with 4 additions and 4 deletions
  1. 4 4
      Tools/Flyinsono.Deployment/lib/Services/PackageService.dart

+ 4 - 4
Tools/Flyinsono.Deployment/lib/Services/PackageService.dart

@@ -74,16 +74,16 @@ class PackageService {
 
   Future<List<String>> getFISLibZipsAsync() async {
     var request = new FindTextWithUrlAndPrefixRequest(
-        url: 'http://192.168.6.89/FISLib/?sort=date&order=asc',
-        prefix: '/FISLib/Flyinsono_SonoPost_');
+        url: 'http://192.168.6.89/FISLib/WindowsSonopost/?sort=date&order=asc',
+        prefix: '/FISLib/WindowsSonopost/Flyinsono_SonoPost_');
     final rpc = GetIt.instance.get<JsonRpcProxy>();
     return await rpc.deployPlatform.findTextWithUrlAndPrefixAsync(request);
   }
 
   Future<List<String>> getFISSDKZipsAsync() async {
     var request = new FindTextWithUrlAndPrefixRequest(
-        url: 'http://192.168.6.89/FISLib/?sort=date&order=asc',
-        prefix: '/FISLib/FISSDK_');
+        url: 'http://192.168.6.89/FISLib/FISSDK/?sort=date&order=asc',
+        prefix: '/FISLib/FISSDK/FISSDK_');
     final rpc = GetIt.instance.get<JsonRpcProxy>();
     return await rpc.deployPlatform.findTextWithUrlAndPrefixAsync(request);
   }