diff --git a/README.md b/README.md index 00b2b26..531435a 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,13 @@ A Mastodon web client that looks like Twitter ## Blog +- Release of Version 1.0.1 - Two bugfixes - [Release of Version 1.0.0](http://nikisoft.myblog.de/nikisoft/art/11264555/The-first-new-Halcyon-release-is-on-Github) ## Instances These instances are publicly accessible and usable by everyone, no matter which Mastodon instance you use. +- https://social.dev-wiki.de - 1.0.1 - https://halcyon.cybre.space - Outdated -- https://social.dev-wiki.de - 1.0.0 You have your own Halcyon instance and want it to be listed here? Create an issue with the link and we will add it to the list. diff --git a/assets/js/halcyon/halcyonUI.js b/assets/js/halcyon/halcyonUI.js index dc69247..2d5c8a9 100644 --- a/assets/js/halcyon/halcyonUI.js +++ b/assets/js/halcyon/halcyonUI.js @@ -1414,7 +1414,7 @@ function setFollows(mid, param, load_options) { let isSyncing = true, followsList = []; api.get('accounts/'+mid+'/'+param, load_options, function(follows) { - + for (let i in follows) { follows_template(follows[i]).appendTo("#js-follows_profile"); followsList.unshift(follows[i].id); @@ -1486,7 +1486,9 @@ $("#js_followers_count").text(AccountObj.followers_count); $("#js_profile_displayname").text(AccountObj.display_name); $("#js_profile_username").text(AccountObj.acct); $("#js_profile_bio").html(AccountObj.note); -if( AccountObj.id === current_id ) { +console.log(AccountObj.id); +console.log(current_id); +if( AccountObj.id == current_id ) { $(`