Skip to content

Commit

Permalink
fix(app-distribution, ios): correct downloadURL usage for JS serializ…
Browse files Browse the repository at this point in the history
…ation (#5668)
  • Loading branch information
YukiKitagata authored Aug 31, 2021
1 parent 415c200 commit 66d991c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ - (dispatch_queue_t)methodQueue {
@"buildVersion" : release.buildVersion,
@"releaseNotes" : release.releaseNotes == nil ? [NSNull null] : release.releaseNotes,
@"isExpired" : [NSNumber numberWithBool:release.isExpired],
@"downloadURL" : release.downloadURL
@"downloadURL" : release.downloadURL.absoluteString
});
}];
}
Expand Down

1 comment on commit 66d991c

@vercel
Copy link

@vercel vercel bot commented on 66d991c Aug 31, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.