Skip to content

Commit

Permalink
Fix lonely posts setting
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilya Cohn committed Jan 15, 2017
1 parent 12a6c0c commit 5720fee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ function setLocalSettings(){
if (cView.localStorage.getItem("read_more_height") == null) cView.localStorage.setItem("read_more_height", 10);
cView.readMoreHeight = cView.readMore? JSON.parse(cView.localStorage.getItem("read_more_height")):0;

cView.blockLonely = cView.localStorage.getItem("hide-lonely-posts");
cView.blockLonely = JSON.parse(cView.localStorage.getItem("hide-lonely-posts"));

var cssTheme = cView.localStorage.getItem("display_theme");
if (cssTheme == "main.css") {
Expand Down

0 comments on commit 5720fee

Please sign in to comment.