Skip to content

Commit d1c1aa0

Browse files
committed
Fix xcodebuild error from incorrect method resolution
1 parent 832957f commit d1c1aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Classes/GlobalStateExplorers/DatabaseBrowser/FLEXRealmDatabaseManager.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ - (BOOL)open
5252

5353
NSError *error = nil;
5454
id configuration = [[configurationClass alloc] init];
55-
[configuration setPath:self.path];
55+
[(RLMRealmConfiguration *)configuration setPath:self.path];
5656
self.realm = [realmClass realmWithConfiguration:configuration error:&error];
5757
return (error == nil);
5858
}

0 commit comments

Comments
 (0)