Skip to content

Commit 8f6f25d

Browse files
committed
Fix seeding social providers
1 parent 7382d4d commit 8f6f25d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Services/SocialProviders/AbstractSocialProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function install(): SocialProvider
6464
return $this->provider;
6565
}
6666

67-
$provider = SocialProvider::whereCode($this->socialiteProviderCode)->first();
67+
$provider = SocialProvider::whereCode($this->code)->first();
6868
$this->provider = $provider;
6969
if ($provider) {
7070
return $provider;

0 commit comments

Comments
 (0)