We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28e7d6 commit 1372eddCopy full SHA for 1372edd
src/Helper/UserDataHelper.php
@@ -31,7 +31,7 @@ public function setEmail(string $email): bool
31
) {
32
$x = explode("@", $email, 2);
33
// https://support.google.com/mail/thread/125577450/gmail-and-googlemail
34
- if (substr($x[1], -mb_strlen("googlemail.com")) == "googlemail.com") {
+ if ($x[1] == "googlemail.com") {
35
$x[1] = "gmail.com";
36
}
37
// https://gmail.googleblog.com/2008/03/2-hidden-ways-to-get-more-from-your.html
0 commit comments