summaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorReed Garmsen <rgarmsen2295@gmail.com>2015-10-14 16:56:13 -0700
committerReed Garmsen <rgarmsen2295@gmail.com>2015-10-19 13:58:15 -0700
commit04bf527966db559523fb0ec317af5076241f1bc5 (patch)
treec80b091f13755fc43ce6f3da46f20ea3af019b3c /utils
parentb5b233f3f02dae61ecf796d8b87a0fafb7b7c499 (diff)
downloadchat-04bf527966db559523fb0ec317af5076241f1bc5.tar.gz
chat-04bf527966db559523fb0ec317af5076241f1bc5.tar.bz2
chat-04bf527966db559523fb0ec317af5076241f1bc5.zip
Changed all goroutine functions to use '...AndForget' as the standard naming system
Diffstat (limited to 'utils')
-rw-r--r--utils/apns.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/utils/apns.go b/utils/apns.go
index 3d07f17ec..06e8ce6ef 100644
--- a/utils/apns.go
+++ b/utils/apns.go
@@ -10,7 +10,7 @@ import (
"github.com/mattermost/platform/model"
)
-func FireAndForgetSendAppleNotify(deviceId string, message string, badge int) {
+func SendAppleNotifyAndForget(deviceId string, message string, badge int) {
go func() {
if err := SendAppleNotify(deviceId, message, badge); err != nil {
l4g.Error(fmt.Sprintf("%v %v", err.Message, err.DetailedError))