diff options
author | r <r@freesoftwareextremist.com> | 2020-07-28 13:36:57 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2020-07-28 13:36:57 +0000 |
commit | f215ab481d66879aea28b89f895d3ed7cb9c0897 (patch) | |
tree | 6c304057032ffd8be9aafea9a2a51b6553d30234 | |
parent | 69f2c3d226fe105f8c576ff6dfa821768f3c413e (diff) | |
download | bloat-f215ab481d66879aea28b89f895d3ed7cb9c0897.tar.gz bloat-f215ab481d66879aea28b89f895d3ed7cb9c0897.zip |
Fix typo
-rw-r--r-- | service/service.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/service/service.go b/service/service.go index 2cc8e5a..35ce3bd 100644 --- a/service/service.go +++ b/service/service.go @@ -228,7 +228,7 @@ func (svc *service) ServeTimelinePage(c *model.Client, tType string, title = "Timeline" case "direct": statuses, err = c.GetTimelineDirect(ctx, &pg) - title = "Local Timeline" + title = "Direct Timeline" case "local": statuses, err = c.GetTimelinePublic(ctx, true, &pg) title = "Local Timeline" @@ -313,7 +313,7 @@ func (svc *service) ServeThreadPage(c *model.Client, id string, reply bool) (err } } - isDirect := status.Visibility == "direct" + isDirect := status.Visibility == "direct" if isDirect || c.Session.Settings.CopyScope { visibility = status.Visibility } else { |