reset values for quick replies on refresh
This commit is contained in:
parent
8a9864d004
commit
ae256300b9
|
@ -274,6 +274,10 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
|
||||||
this.targetedId = targetedId;
|
this.targetedId = targetedId;
|
||||||
redraft = false;
|
redraft = false;
|
||||||
lstHolders = new ArrayList<>();
|
lstHolders = new ArrayList<>();
|
||||||
|
toot_content = null;
|
||||||
|
toot_cw_content = null;
|
||||||
|
tootReply = null;
|
||||||
|
currentToId = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StatusListAdapter(TagTimeline tagTimeline, String targetedId, boolean isOnWifi, List<Status> statuses) {
|
public StatusListAdapter(TagTimeline tagTimeline, String targetedId, boolean isOnWifi, List<Status> statuses) {
|
||||||
|
@ -286,6 +290,10 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
|
||||||
redraft = false;
|
redraft = false;
|
||||||
this.tagTimeline = tagTimeline;
|
this.tagTimeline = tagTimeline;
|
||||||
lstHolders = new ArrayList<>();
|
lstHolders = new ArrayList<>();
|
||||||
|
toot_content = null;
|
||||||
|
toot_cw_content = null;
|
||||||
|
tootReply = null;
|
||||||
|
currentToId = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public StatusListAdapter(int position, String targetedId, boolean isOnWifi, List<Status> statuses) {
|
public StatusListAdapter(int position, String targetedId, boolean isOnWifi, List<Status> statuses) {
|
||||||
|
@ -297,6 +305,10 @@ public class StatusListAdapter extends RecyclerView.Adapter implements OnPostAct
|
||||||
this.targetedId = targetedId;
|
this.targetedId = targetedId;
|
||||||
redraft = false;
|
redraft = false;
|
||||||
lstHolders = new ArrayList<>();
|
lstHolders = new ArrayList<>();
|
||||||
|
toot_content = null;
|
||||||
|
toot_cw_content = null;
|
||||||
|
tootReply = null;
|
||||||
|
currentToId = -1;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue