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

fix(gcal): remove possible extraneous variation codepoint

This commit is contained in:
Graham Anderson 2019-05-08 18:50:15 +01:00
parent d77415783a
commit a53593f8c6

View File

@ -214,7 +214,7 @@ func (widget *Widget) responseIcon(calEvent *CalEvent) string {
switch calEvent.ResponseFor(widget.settings.email) { switch calEvent.ResponseFor(widget.settings.email) {
case "accepted": case "accepted":
return icon + "✔" return icon + "✔"
case "declined": case "declined":
return icon + "✘" return icon + "✘"
case "needsAction": case "needsAction":