Преглед на файлове

Fix the issue that the NSURLRequest method should not be nil.

DreamPiggy преди 5 години
родител
ревизия
2d33fc8e6e
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      SDWebImage/Core/SDWebImageDownloaderRequestModifier.m

+ 1 - 1
SDWebImage/Core/SDWebImageDownloaderRequestModifier.m

@@ -53,7 +53,7 @@
 }
 
 - (instancetype)initWithMethod:(NSString *)method headers:(NSDictionary<NSString *,NSString *> *)headers body:(NSData *)body {
-    method = [method copy];
+    method = method ? [method copy] : @"GET";
     headers = [headers copy];
     body = [body copy];
     return [self initWithBlock:^NSURLRequest * _Nullable(NSURLRequest * _Nonnull request) {