瀏覽代碼

Fix space inconsistency

Steven Zhu 4 年之前
父節點
當前提交
849c3fd9c9
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      notify/sendgrid.sh

+ 1 - 1
notify/sendgrid.sh

@@ -44,7 +44,7 @@ sendgrid_send() {
   export _H2="Content-Type: application/json"
 
   _content="$(echo "$_content" | _json_encode)"
-  
+
   if [ -z "$SENDGRID_FROM_NAME" ]; then
     _data="{\"personalizations\": [{\"to\": [{\"email\": \"$SENDGRID_TO\"}]}],\"from\": {\"email\": \"$SENDGRID_FROM\"},\"subject\": \"$_subject\",\"content\": [{\"type\": \"text/plain\", \"value\": \"$_content\"}]}"
   else