Browse Source

VLCNetworkLoginInformation: loginInformation should not be null

Carola Nitz 7 years ago
parent
commit
b501c10820
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Sources/LocalNetworkConnectivity/VLCNetworkLoginDataSourceLogin.h

+ 1 - 1
Sources/LocalNetworkConnectivity/VLCNetworkLoginDataSourceLogin.h

@@ -19,7 +19,7 @@ NS_ASSUME_NONNULL_BEGIN
 
 @interface VLCNetworkLoginDataSourceLogin : NSObject <VLCNetworkLoginDataSourceSection>
 @property (nonatomic, weak) id <VLCNetworkLoginDataSourceLoginDelegate> delegate;
-@property (nonatomic, nullable) VLCNetworkServerLoginInformation *loginInformation;
+@property (nonatomic, strong) VLCNetworkServerLoginInformation *loginInformation;
 @end
 
 @protocol VLCNetworkLoginDataSourceLoginDelegate <NSObject>