fix remove test flag of visibility of toots so only public toots are shown

This commit is contained in:
シモン 2017-05-19 15:51:22 +09:00
parent cfb2089fbf
commit 256525e143

View file

@ -147,7 +147,7 @@ MastodonApi.prototype.listStatuses = function() {
setHeaderUserLink.call(mapi, account);
setFooterLink.call(mapi, account);
}
if(true || data_[i].visibility=='public') {
if(data_[i].visibility=='public') {
// list only public toots
appendStatus.call(mapi, data_[i]);
}