From 03969db8a97db1350c65e2af8b4f6552e9b32683 Mon Sep 17 00:00:00 2001
From: Gregory Rudolph <rudi9719@keybase.io>
Date: Thu, 17 Oct 2019 08:39:05 -0400
Subject: [PATCH] Fix write to feed to be print instead

---
 main.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.go b/main.go
index 93624e9..696fc2d 100644
--- a/main.go
+++ b/main.go
@@ -162,7 +162,7 @@ func getViewTitle(viewName string) string {
 	view, err := g.View(viewName)
 	if err != nil {
 		// in case there is active tab completion, filter that to just the view title and not the completion options.
-		writeToView("Feed", fmt.Sprintf("Error getting view title: %s", err))
+		printToView("Feed", fmt.Sprintf("Error getting view title: %s", err))
 		return ""
 	} else {
 		return strings.Split(view.Title, "||")[0]