File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ - (instancetype)copyWithZone:(NSZone *)zone {
170
170
FIRStorage *storage = [[[self class ] allocWithZone: zone] initWithApp: _app
171
171
bucket: _storageBucket
172
172
auth: _auth];
173
- storage.callbackQueue = _callbackQueue ;
173
+ storage.callbackQueue = self. callbackQueue ;
174
174
return storage;
175
175
}
176
176
@@ -195,7 +195,7 @@ - (BOOL)isEqualToFIRStorage:(FIRStorage *)storage {
195
195
}
196
196
197
197
- (NSUInteger )hash {
198
- NSUInteger hash = [_app hash ] ^ [_callbackQueue hash ];
198
+ NSUInteger hash = [_app hash ] ^ [self .callbackQueue hash ];
199
199
return hash;
200
200
}
201
201
@@ -236,6 +236,10 @@ - (FIRStorageReference *)referenceWithPath:(NSString *)string {
236
236
return reference;
237
237
}
238
238
239
+ - (dispatch_queue_t )callbackQueue {
240
+ return _fetcherServiceForApp.callbackQueue ;
241
+ }
242
+
239
243
- (void )setCallbackQueue : (dispatch_queue_t )callbackQueue {
240
244
_fetcherServiceForApp.callbackQueue = callbackQueue;
241
245
}
You can’t perform that action at this time.
0 commit comments