Skip to content

Commit f7b1f01

Browse files
authored
Merge pull request #188 from liulianci/navigationiOS
fix a navigateInternal issue on iOS side
2 parents 31ae1da + b42e269 commit f7b1f01

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

ios/ElectrodeApiImpl/APIImpls/Core/ENCoreDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ import UIKit
9999
} else {
100100
result["jsonPayload"] = payload2
101101
}
102-
} else if payload1 = payload1 {
102+
} else if let payload1 = payload1 {
103103
result["jsonPayload"] = payload1
104104
} else {
105105
result["jsonPayload"] = payload2

ios/moviesreloadedMiniApp/ErnRunner.xcodeproj/project.pbxproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,7 @@
171171
TargetAttributes = {
172172
304F3E941EEF455C00F1E36B = {
173173
CreatedOnToolsVersion = 8.3.2;
174+
DevelopmentTeam = 4F9HS269YY;
174175
LastSwiftMigration = 1030;
175176
ProvisioningStyle = Automatic;
176177
};
@@ -362,6 +363,7 @@
362363
buildSettings = {
363364
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
364365
CLANG_ENABLE_MODULES = YES;
366+
DEVELOPMENT_TEAM = 4F9HS269YY;
365367
HEADER_SEARCH_PATHS = "";
366368
INFOPLIST_FILE = ErnRunner/Info.plist;
367369
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
@@ -378,6 +380,7 @@
378380
buildSettings = {
379381
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
380382
CLANG_ENABLE_MODULES = YES;
383+
DEVELOPMENT_TEAM = 4F9HS269YY;
381384
HEADER_SEARCH_PATHS = "";
382385
INFOPLIST_FILE = ErnRunner/Info.plist;
383386
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";

0 commit comments

Comments
 (0)