Compare commits

..

No commits in common. "4f3229e436d62f755bad3ff5764db55a98556365" and "c38829a1b2045689d9b0d71bf31aab7c28b4e2c3" have entirely different histories.

3 changed files with 2 additions and 5 deletions

View file

@ -5,9 +5,6 @@ public class Account : ASObject
[JsonPropertyName("bot")]
public bool Bot { get; set; }
[JsonPropertyName("created_at")]
public DateTimeOffset CreatedAt { get; set; }
[JsonPropertyName("display_name")]
public string DisplayName { get; set; } = null!;

View file

@ -523,7 +523,7 @@ public class Pleroma
case Timeline.Bubble:
timelineName = "bubble";
break;
case Timeline.All:
case Timeline.Public:
timelineName = "public";
break;

View file

@ -28,5 +28,5 @@ public enum Timeline
/// <summary>
/// All statuses visible to the instance.
/// </summary>
All,
Public,
}