From bfb292c39210943f09fc191cbe78ca8e358608ba Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Fri, 17 Aug 2018 14:52:29 -0700 Subject: [PATCH] Can configure Twitter screen name to follow in the config file --- twitter/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitter/client.go b/twitter/client.go index 5f11a1590..bb8b4c63c 100644 --- a/twitter/client.go +++ b/twitter/client.go @@ -25,7 +25,7 @@ type Client struct { func NewClient(url string) *Client { client := Client{ apiBase: url, - screenName: "senorprogrammer", + screenName: wtf.Config.UString("wtf.mods.twitter.screenName", "wtfutil"), count: 5, }