Skip to content

Commit

Permalink
Fix nil logging class using Cocoapods in WCiOS.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaclync committed Aug 30, 2023
1 parent aad902b commit 7dd7d5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Model/ObjC/Common/TracksLogging.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#if SWIFT_PACKAGE
Class loggingClass = NSClassFromString(@"AutomatticTracksModel.TracksLogging");
#else
Class loggingClass = NSClassFromString(@"TracksLogging");
Class loggingClass = NSClassFromString(@"AutomatticTracks.TracksLogging");
#endif
if ([loggingClass conformsToProtocol: @protocol(TracksLoggingConfiguration)]) {
result = loggingClass;
Expand Down

0 comments on commit 7dd7d5d

Please sign in to comment.