mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Encode email for URL when deleting invited group email
This commit is contained in:
parent
69bc6fc8e4
commit
ba3822d1ae
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ define [
|
|||
for user in $scope.selectedUsers
|
||||
do (user) ->
|
||||
if user.holdingAccount and !user._id?
|
||||
url = "/subscription/group/email/#{user.email}"
|
||||
url = "/subscription/group/email/#{encodeURIComponent(user.email)}"
|
||||
else
|
||||
url = "/subscription/group/user/#{user._id}"
|
||||
queuedHttp({
|
||||
|
|
Loading…
Reference in a new issue