From b5dc8d2f8c6bfd5dedc498f022756564ddecf01a Mon Sep 17 00:00:00 2001 From: uwaa Date: Thu, 16 Jan 2025 18:38:35 +0000 Subject: [PATCH] pleroma: rename Public to All --- Pleroma/Pleroma.cs | 2 +- Pleroma/Timeline.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Pleroma/Pleroma.cs b/Pleroma/Pleroma.cs index daee850..8b3fe89 100644 --- a/Pleroma/Pleroma.cs +++ b/Pleroma/Pleroma.cs @@ -523,7 +523,7 @@ public class Pleroma case Timeline.Bubble: timelineName = "bubble"; break; - case Timeline.Public: + case Timeline.All: timelineName = "public"; break; diff --git a/Pleroma/Timeline.cs b/Pleroma/Timeline.cs index 36aad74..7a694a6 100644 --- a/Pleroma/Timeline.cs +++ b/Pleroma/Timeline.cs @@ -28,5 +28,5 @@ public enum Timeline /// /// All statuses visible to the instance. /// - Public, + All, }