refactor(AccountTimelineFragment.java): add getFilterContext and getWebUri methods back

This commit is contained in:
LucasGGamerM
2025-05-19 10:12:02 -03:00
parent 858f9eea7b
commit 3976902ef6

View File

@@ -1,6 +1,7 @@
package org.joinmastodon.android.fragments; package org.joinmastodon.android.fragments;
import android.app.Activity; import android.app.Activity;
import android.net.Uri;
import android.os.Bundle; import android.os.Bundle;
import android.view.View; import android.view.View;
import android.widget.HorizontalScrollView; import android.widget.HorizontalScrollView;
@@ -170,4 +171,19 @@ public class AccountTimelineFragment extends StatusListFragment{
dataLoading=true; dataLoading=true;
doLoadData(); doLoadData();
} }
// MOSHIDON:
@Override
protected FilterContext getFilterContext() {
return FilterContext.ACCOUNT;
}
@Override
public Uri getWebUri(Uri.Builder base) {
// could return different uris based on filter (e.g. media -> "/media"), but i want to
// return the remote url to the user, and i don't know whether i'd need to append
// '#media' (akkoma/pleroma) or '/media' (glitch/mastodon) since i don't know anything
// about the remote instance. so, just returning the base url to the user instead
return Uri.parse(user.url);
}
} }