Skip to content

Commit

Permalink
fix: fix totalAll count
Browse files Browse the repository at this point in the history
  • Loading branch information
MicroCBer committed Feb 4, 2024
1 parent e7a8ffd commit 7b102af
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ class RecyclerAdapterStickerList(private val act: MainActivity) :
holder.syncedStatus.text = "低清 ${s.syncedState.lowQuality}\n高清 ${s.syncedState.highQuality}"
holder.exportedAll.text = s.remoteState.all.toString()
holder.exportedStatus.text = "低清 ${s.remoteState.lowQuality}\n高清 ${s.remoteState.highQuality}"
holder.totalAll.text = s.syncedState.all.toString();
holder.totalAll.text = s.all.toString();

holder.syncBtn.setOnClickListener {
val pd = ProgressDialog(act)
Expand Down

0 comments on commit 7b102af

Please sign in to comment.