Skip to content

Commit

Permalink
fix reutrning of channels object
Browse files Browse the repository at this point in the history
not sure why the compiler didn't catch this
  • Loading branch information
lawrence-forooghian committed Jan 22, 2025
1 parent e746699 commit 8d0279f
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions Source/ARTRealtimeWrapperSDKProxy.m
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ - (instancetype)initWithRealtime:(ARTRealtime *)realtime
if (self = [super init]) {
_realtime = realtime;
_options = options;
_channels = [[ARTRealtimeWrapperSDKChannelsProxy alloc] initWithChannels:realtime.channels
options:options];
}

return self;
Expand All @@ -59,10 +61,6 @@ - (ARTConnection *)connection {
return self.realtime.connection;
}

- (ARTRealtimeChannels *)channels {
return self.realtime.channels;
}

- (ARTPush *)push {
return self.realtime.push;
}
Expand Down

0 comments on commit 8d0279f

Please sign in to comment.