Parcourir la source

fix: priority inversion issue in GrowingSRWebSocket by Xcode14 #252

桂欢 il y a 1 an
Parent
commit
0dac915511

+ 1 - 0
SLAiELTS/Pods/SocketRocket/SocketRocket/Internal/RunLoop/SRRunLoopThread.m

@@ -29,6 +29,7 @@
     dispatch_once(&onceToken, ^{
         thread = [[SRRunLoopThread alloc] init];
         thread.name = @"com.facebook.SocketRocket.NetworkThread";
+        thread.qualityOfService = NSQualityOfServiceUserInitiated;
         [thread start];
     });
     return thread;