[BugFix]修复注册页面随机昵称有时不显示的bug

This commit is contained in:
wushaocheng
2022-12-06 19:04:43 +08:00
parent 0c7bb0544b
commit 6006b0f79a
2 changed files with 1 additions and 6 deletions

View File

@@ -81,9 +81,6 @@ public class SquareDynamicFragment extends BaseMvpFragment<IMiniWorldCategoryVie
SwipeRefreshLayout refreshLayout;
ViewPager mTopicViewPager;
TextView tvTitleTopic;
/**
* 刷新的时候传null
*/
/**
* 话题类型ID
* 全部 0
@@ -102,8 +99,6 @@ public class SquareDynamicFragment extends BaseMvpFragment<IMiniWorldCategoryVie
private int squareType;
private RecommendTopicListAdapter mRecommendTopicAdapter;
public static SquareDynamicFragment newInstance(int type) {
SquareDynamicFragment fragment = new SquareDynamicFragment();
Bundle bundle = new Bundle();

View File

@@ -640,7 +640,7 @@ public class AuthModel extends BaseModel implements IAuthModel {
public void reset() {
currentAccountInfo = new AccountInfo();
ticketInfo = new TicketInfo();
thirdUserInfo = new ThirdUserInfo();
thirdUserInfo = null;
DemoCache.saveCurrentAccountInfo(new AccountInfo());
DemoCache.saveTicketInfo(new TicketInfo());
DemoCache.saveBoundAuthCode(false);