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 90caefd commit 149420dCopy full SHA for 149420d
app/Jobs/UpdateUserIdenticonStatus.php
@@ -20,6 +20,8 @@ public function handle(GithubUserApi $github): void
20
{
21
$hasIdenticon = $github->hasIdenticon($this->user->githubId());
22
23
- $this->user->update(['github_has_identicon' => $hasIdenticon]);
+ User::withoutSyncingToSearch(function () use ($hasIdenticon) {
24
+ $this->user->update(['github_has_identicon' => $hasIdenticon]);
25
+ });
26
}
27
0 commit comments