Skip to content

Commit 565371b

Browse files
committed
release
1 parent 7db59a0 commit 565371b

File tree

2 files changed

+20
-14
lines changed

2 files changed

+20
-14
lines changed

ios/Runner.xcodeproj/project.pbxproj

+12-12
Original file line numberDiff line numberDiff line change
@@ -436,7 +436,7 @@
436436
CODE_SIGN_IDENTITY = "Apple Development";
437437
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
438438
CODE_SIGN_STYLE = Automatic;
439-
CURRENT_PROJECT_VERSION = 135;
439+
CURRENT_PROJECT_VERSION = 136;
440440
DEVELOPMENT_TEAM = G8RXR25D89;
441441
ENABLE_BITCODE = NO;
442442
INFOPLIST_FILE = Runner/Info.plist;
@@ -445,7 +445,7 @@
445445
"$(inherited)",
446446
"@executable_path/Frameworks",
447447
);
448-
MARKETING_VERSION = 1.1.35;
448+
MARKETING_VERSION = 1.1.36;
449449
PRODUCT_BUNDLE_IDENTIFIER = com.agoradesk.app;
450450
PRODUCT_NAME = "$(TARGET_NAME)";
451451
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -526,7 +526,7 @@
526526
CODE_SIGN_IDENTITY = "Apple Development";
527527
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
528528
CODE_SIGN_STYLE = Automatic;
529-
CURRENT_PROJECT_VERSION = 135;
529+
CURRENT_PROJECT_VERSION = 136;
530530
DEVELOPMENT_TEAM = G8RXR25D89;
531531
ENABLE_BITCODE = NO;
532532
INFOPLIST_FILE = Runner/Info.plist;
@@ -535,7 +535,7 @@
535535
"$(inherited)",
536536
"@executable_path/Frameworks",
537537
);
538-
MARKETING_VERSION = 1.1.35;
538+
MARKETING_VERSION = 1.1.36;
539539
PRODUCT_BUNDLE_IDENTIFIER = com.agoradesk.app;
540540
PRODUCT_NAME = "$(TARGET_NAME)";
541541
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -615,7 +615,7 @@
615615
CODE_SIGN_IDENTITY = "Apple Development";
616616
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
617617
CODE_SIGN_STYLE = Automatic;
618-
CURRENT_PROJECT_VERSION = 135;
618+
CURRENT_PROJECT_VERSION = 136;
619619
DEVELOPMENT_TEAM = G8RXR25D89;
620620
ENABLE_BITCODE = NO;
621621
INFOPLIST_FILE = Runner/Info.plist;
@@ -624,7 +624,7 @@
624624
"$(inherited)",
625625
"@executable_path/Frameworks",
626626
);
627-
MARKETING_VERSION = 1.1.35;
627+
MARKETING_VERSION = 1.1.36;
628628
PRODUCT_BUNDLE_IDENTIFIER = co.localmonero.app;
629629
PRODUCT_NAME = "$(TARGET_NAME)";
630630
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -707,7 +707,7 @@
707707
CODE_SIGN_IDENTITY = "Apple Development";
708708
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
709709
CODE_SIGN_STYLE = Automatic;
710-
CURRENT_PROJECT_VERSION = 135;
710+
CURRENT_PROJECT_VERSION = 136;
711711
DEVELOPMENT_TEAM = G8RXR25D89;
712712
ENABLE_BITCODE = NO;
713713
INFOPLIST_FILE = Runner/Info.plist;
@@ -716,7 +716,7 @@
716716
"$(inherited)",
717717
"@executable_path/Frameworks",
718718
);
719-
MARKETING_VERSION = 1.1.35;
719+
MARKETING_VERSION = 1.1.36;
720720
PRODUCT_BUNDLE_IDENTIFIER = co.localmonero.app;
721721
PRODUCT_NAME = "$(TARGET_NAME)";
722722
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -795,7 +795,7 @@
795795
CODE_SIGN_IDENTITY = "Apple Development";
796796
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
797797
CODE_SIGN_STYLE = Automatic;
798-
CURRENT_PROJECT_VERSION = 135;
798+
CURRENT_PROJECT_VERSION = 136;
799799
DEVELOPMENT_TEAM = G8RXR25D89;
800800
ENABLE_BITCODE = NO;
801801
INFOPLIST_FILE = Runner/Info.plist;
@@ -804,7 +804,7 @@
804804
"$(inherited)",
805805
"@executable_path/Frameworks",
806806
);
807-
MARKETING_VERSION = 1.1.35;
807+
MARKETING_VERSION = 1.1.36;
808808
PRODUCT_BUNDLE_IDENTIFIER = com.agoradesk.app;
809809
PRODUCT_NAME = "$(TARGET_NAME)";
810810
PROVISIONING_PROFILE_SPECIFIER = "";
@@ -882,7 +882,7 @@
882882
CODE_SIGN_IDENTITY = "Apple Development";
883883
"CODE_SIGN_IDENTITY[sdk=macosx*]" = "Apple Development";
884884
CODE_SIGN_STYLE = Automatic;
885-
CURRENT_PROJECT_VERSION = 135;
885+
CURRENT_PROJECT_VERSION = 136;
886886
DEVELOPMENT_TEAM = G8RXR25D89;
887887
ENABLE_BITCODE = NO;
888888
INFOPLIST_FILE = Runner/Info.plist;
@@ -891,7 +891,7 @@
891891
"$(inherited)",
892892
"@executable_path/Frameworks",
893893
);
894-
MARKETING_VERSION = 1.1.35;
894+
MARKETING_VERSION = 1.1.36;
895895
PRODUCT_BUNDLE_IDENTIFIER = co.localmonero.app;
896896
PRODUCT_NAME = "$(TARGET_NAME)";
897897
PROVISIONING_PROFILE_SPECIFIER = "";

lib/core/api/api_client.dart

+8-2
Original file line numberDiff line numberDiff line change
@@ -158,12 +158,18 @@ class ApiClient with UrlMixin {
158158
final String incidentId = resp.substring(firstIndex, secondIndex);
159159
eventBus.fire(Display403IncapsulaEvent(incidentId: incidentId));
160160
}
161+
try {
161162
if (error.response?.data != null && error.response!.data.toString().contains('winding')) {
162-
eventBus.fire(Display444Event(message: error.response!.data.toString()));
163+
eventBus.fire(Display444Event(message: error.response!.data['error']['message']));
164+
}} catch (e) {
165+
debugPrint('++++[api_client ERROR 403] $e');
163166
}
164167
} else if (statusCode == 444) {
168+
try {
165169
if (error.response?.data != null && error.response!.data.toString().contains('winding')) {
166-
eventBus.fire(Display444Event(message: error.response!.data.toString()));
170+
eventBus.fire(Display444Event(message: error.response!.data['error']['message']));
171+
}} catch (e) {
172+
debugPrint('++++[api_client ERROR 444] $e');
167173
}
168174
} else if (statusCode == 503) {
169175
//check that response contains word maintenance

0 commit comments

Comments
 (0)