SCSS files are only cached if their size is > 0

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2018-01-26 17:02:54 +01:00
parent ca493ab5b1
commit 92e93704be
No known key found for this signature in database
GPG Key ID: 4C614C6ED2CDE6DF
1 changed files with 2 additions and 1 deletions

View File

@ -153,8 +153,9 @@ class SCSSCacher {
return false;
}
}
return true;
}
return true;
return false;
} catch(NotFoundException $e) {
return false;
}