This commit is contained in:
Jeremy Benoist
2019-01-15 09:49:22 +01:00
parent 5419a8368e
commit 3afc87426d
3 changed files with 3 additions and 3 deletions

View File

@ -62,7 +62,7 @@ class InstapaperImport extends AbstractImport
}
$entries = [];
$handle = fopen($this->filepath, 'rb');
$handle = fopen($this->filepath, 'r');
while (false !== ($data = fgetcsv($handle, 10240))) {
if ('URL' === $data[0]) {
continue;