Compare commits

...

1 Commits

Author SHA1 Message Date
kPherox
d8147d25ba
cancel follow request 2020-05-24 01:42:00 +09:00

View File

@ -417,6 +417,10 @@ function relations(user, acct_id) {
$("#his-data").addClass("following");
$("#his-follow-btn-text").text(lang.lang_status_unfollow);
hisList(user, acct_id);
} else if (json.requested) {
//フォローリクエストを送っている
$("#his-data").addClass("follow-requested");
$("#his-follow-btn-text").text(lang.lang_status_cancel_follow_request);
} else {
$("#his-follow-btn-text").text(lang.lang_status_follow);
}