Revert "Changing hardcoded fosstodon to domain"

This reverts commit 269794bfc3.
This commit is contained in:
LucasGGamerM
2023-02-20 11:20:01 -03:00
parent 269794bfc3
commit 9ae0f49bff
2 changed files with 5 additions and 5 deletions

View File

@@ -30,7 +30,7 @@ public class TimelineDefinition {
private @Nullable String listTitle;
private @Nullable String hashtagName;
private @Nullable String domain;
private @Nullable String customLocalTimelineDomain;
public static TimelineDefinition ofList(String listId, String listTitle) {
TimelineDefinition def = new TimelineDefinition(TimelineType.LIST);
@@ -55,7 +55,7 @@ public class TimelineDefinition {
public static TimelineDefinition ofCustomLocalTimeline(String domain) {
TimelineDefinition def = new TimelineDefinition(TimelineType.CUSTOM_LOCAL_TIMELINE);
def.domain = domain;
def.customLocalTimelineDomain = domain;
return def;
}
@@ -92,7 +92,7 @@ public class TimelineDefinition {
case POST_NOTIFICATIONS -> ctx.getString(R.string.sk_timeline_posts);
case LIST -> listTitle;
case HASHTAG -> hashtagName;
case CUSTOM_LOCAL_TIMELINE -> domain;
case CUSTOM_LOCAL_TIMELINE -> customLocalTimelineDomain;
};
}