Fix issue #478 - Tags cannot be followed when clicking on them.

This commit is contained in:
Thomas 2022-11-20 10:04:22 +01:00
parent 6d99ab479f
commit 0e8354b0c1

View file

@ -146,7 +146,8 @@ public class TagVM extends AndroidViewModel {
tagMutableLiveData = new MutableLiveData<>();
new Thread(() -> {
Tag tag = null;
Call<Tag> tagCall = mastodonTagService.follow(token, name);
String filteredValue = name.replaceAll("\\#", "");
Call<Tag> tagCall = mastodonTagService.follow(token, filteredValue);
if (tagCall != null) {
try {
Response<Tag> appResponse = tagCall.execute();