refactor(BaseAccountListFragment.java): add getAccountID method back

This commit is contained in:
LucasGGamerM
2025-04-07 11:00:21 -03:00
parent d44a3813fd
commit 5248ae9e08

View File

@@ -180,4 +180,10 @@ public abstract class BaseAccountListFragment extends MastodonRecyclerFragment<A
return image==0 ? item.avaRequest : item.emojiHelper.getImageRequest(image-1);
}
}
// MOSHIDON:
@Override
public String getAccountID() {
return accountID;
}
}