Skip to content

Commit

Permalink
fix(app-distribution, ios): missing downloadURL
Browse files Browse the repository at this point in the history
  • Loading branch information
YukiKitagata committed Aug 31, 2021
1 parent 41c0107 commit 58ceab5
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

0 comments on commit 58ceab5

Please sign in to comment.