1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Fix a bug in GCal with current event display

This commit is contained in:
Chris Cummer 2018-04-12 14:18:29 -07:00 committed by Chris Cummer
parent f2f3b2a1ac
commit 00ec46bfed

View File

@ -123,7 +123,7 @@ func (widget *Widget) eventSummary(event *calendar.Event, conflict bool) string
if conflict {
return fmt.Sprintf("%s %s", Config.UString("wtf.mods.gcal.conflictIcon", "🚨"), summary)
} else {
return event.Summary
return summary
}
}