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

This commit is contained in:
LucasGGamerM
2025-05-18 09:37:07 -03:00
parent b0942b6b0c
commit ccd09636b8

View File

@@ -317,4 +317,15 @@ public class ThreadFragment extends StatusListFragment implements AssistContentP
} }
} }
} }
// MOSHIDON:
@Override
protected FilterContext getFilterContext() {
return FilterContext.THREAD;
}
@Override
public Uri getWebUri(Uri.Builder base) {
return Uri.parse(mainStatus.url);
}
} }