Skip to content

Commit

Permalink
Merge pull request #62 from RishabhTayal/login-multiple-account-fix
Browse files Browse the repository at this point in the history
fixed multiple account login bug
  • Loading branch information
RishabhTayal committed Jan 2, 2018
2 parents 2cc089c + 255c9f0 commit 9382219
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ReviewMonitor/ServiceCaller.swift
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ class ServiceCaller: NSObject {
request.setValue(account.username, forHTTPHeaderField: "username")
}
for key in header.keys {
request.addValue(header[key]!, forHTTPHeaderField: key)
request.setValue(header[key]!, forHTTPHeaderField: key)
}
url += "?" + convertToUrlParameter(params)
url = url.addingPercentEncoding(withAllowedCharacters: CharacterSet.urlQueryAllowed)!
Expand Down
2 changes: 1 addition & 1 deletion ReviewMonitor/Supporting Files/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundleShortVersionString</key>
<string>1.2</string>
<key>CFBundleVersion</key>
<string>466</string>
<string>469</string>
<key>Fabric</key>
<dict>
<key>APIKey</key>
Expand Down

0 comments on commit 9382219

Please sign in to comment.