Skip to content

Commit

Permalink
remove extra clause in removeFromGroup
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewBemis committed Sep 8, 2017
1 parent b64f8e4 commit 2551f5b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class HttpGoogleDirectoryDAO(val clientSecrets: GoogleClientSecrets,
executeGoogleRequest(deleter)
()
}) {
case e: HttpResponseException if e.getStatusCode == StatusCodes.NotFound.intValue && e.getStatusMessage.contains("memberKey") => () //if the member is already absent, then don't keep trying to delete them
case e: HttpResponseException if e.getStatusCode == StatusCodes.NotFound.intValue => () //if the member is already absent, then don't keep trying to delete them
}
}

Expand Down

0 comments on commit 2551f5b

Please sign in to comment.