Add missing comma

This commit is contained in:
Jonny Barnes 2016-09-17 20:58:47 +01:00
parent 756f40fb55
commit c5e0b621a6

View file

@ -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();
}