Validate server data before accessing it using a subscript. Fixes #2861

This commit is contained in:
Maurice Parker 2021-03-09 04:47:15 -06:00
parent 3eed5fe72a
commit 7a17c1e8aa
1 changed files with 3 additions and 1 deletions

View File

@ -117,7 +117,9 @@ final class ReaderAPICaller: NSObject {
var authData: [String: String] = [:]
rawData.split(separator: "\n").forEach({ (line: Substring) in
let items = line.split(separator: "=").map{String($0)}
authData[items[0]] = items[1]
if items.count == 2 {
authData[items[0]] = items[1]
}
})
guard let authString = authData["Auth"] else {