Merge branch 'feature/follow_hashtags' into fork

Fixes #31, mastodon#233
This commit is contained in:
sk
2022-11-09 15:48:18 +01:00
10 changed files with 104 additions and 5 deletions

View File

@@ -11,6 +11,7 @@ public class Hashtag extends BaseModel{
public String name;
@RequiredField
public String url;
public boolean following;
public List<History> history;
@Override
@@ -18,6 +19,7 @@ public class Hashtag extends BaseModel{
return "Hashtag{"+
"name='"+name+'\''+
", url='"+url+'\''+
", following="+following+
", history="+history+
'}';
}