aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/ChromeImport.php
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2019-02-27 14:33:26 +0100
committerJeremy Benoist <jeremy.benoist@gmail.com>2019-02-27 14:33:26 +0100
commitea925bb112ab99efbb29d8e7113e80357a70bd18 (patch)
treea7c98a6cff8301675875617e604c508113424192 /src/Wallabag/ImportBundle/Import/ChromeImport.php
parent3784688a88230d9c3aec4ca518be52ea1c70aeb9 (diff)
downloadwallabag-ea925bb112ab99efbb29d8e7113e80357a70bd18.tar.gz
wallabag-ea925bb112ab99efbb29d8e7113e80357a70bd18.tar.zst
wallabag-ea925bb112ab99efbb29d8e7113e80357a70bd18.zip
CS
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/ChromeImport.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/ChromeImport.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/ImportBundle/Import/ChromeImport.php b/src/Wallabag/ImportBundle/Import/ChromeImport.php
index eccee698..4ae82ade 100644
--- a/src/Wallabag/ImportBundle/Import/ChromeImport.php
+++ b/src/Wallabag/ImportBundle/Import/ChromeImport.php
@@ -57,7 +57,7 @@ class ChromeImport extends BrowserImport
57 'created_at' => substr($entry['date_added'], 0, 10), 57 'created_at' => substr($entry['date_added'], 0, 10),
58 ]; 58 ];
59 59
60 if (array_key_exists('tags', $entry) && '' !== $entry['tags']) { 60 if (\array_key_exists('tags', $entry) && '' !== $entry['tags']) {
61 $data['tags'] = $entry['tags']; 61 $data['tags'] = $entry['tags'];
62 } 62 }
63 63