Add missing comma
This commit is contained in:
parent
756f40fb55
commit
c5e0b621a6
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class ParseCachedWebMentions extends Command
|
|||
$html = $filesystem->get($filepath);
|
||||
$url = $this->URLFromFilename($filepath);
|
||||
$microformats = \Mf2\parse($html, $url);
|
||||
$webmention = WebMention::where('source' $url)->firstOrFail();
|
||||
$webmention = WebMention::where('source', $url)->firstOrFail();
|
||||
$webmention->mf2 = json_encode($microformats);
|
||||
$webmention->save();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue