Fixed false if condition

This commit is contained in:
Tobias Reich 2014-10-10 20:02:53 +02:00
parent 436dcfef8c
commit 96527248e8
2 changed files with 2 additions and 2 deletions

View File

@ -61,7 +61,7 @@ photo = {
// Never preload on mobile devices with bare RAM and
// mostly mobile internet
if (!mobileBrowser()) return false;
if (mobileBrowser()) return false;
if (album.json &&
album.json.content &&

File diff suppressed because one or more lines are too long