Fix errors parsing links by pulling in newer version of my linkify extension

This commit is contained in:
Jonny Barnes 2017-11-07 22:42:07 +00:00
parent c7c016f59d
commit 8c03c1980c
4 changed files with 39 additions and 32 deletions

View file

@ -55,5 +55,9 @@ class NotesTableSeeder extends Seeder
$noteSyndicated->swarm_url = 'https://www.swarmapp.com/checking/123456789';
$noteSyndicated->instagram_url = 'https://www.instagram.com/p/aWsEd123Jh';
$noteSyndicated->save();
sleep(1);
$noteWithTextLinkandEmoji = App\Note::create([
'note' => 'I love https://duckduckgo.com 💕' // theres a two-heart emoji at the end of this
]);
}
}