AzureAD/microsoft-authentication-library-common-for-objc

CustomWebViewHeaders shouldn't be mutable

oldalton opened this issue · 1 comments

MSIDInteractiveRequestParameters.h file specifies customWebviewHeaders as a NSMutableDictionary. It should be NSDictionary instead.

@property (readwrite) NSMutableDictionary<NSString *, NSString *> *customWebviewHeaders;

in https://github.com/AzureAD/microsoft-authentication-library-common-for-objc/blob/dev/IdentityCore/src/parameters/MSIDInteractiveRequestParameters.h#L37

CustomWebViewHeaders was converted to immutable in this PR

#857