diff --git a/ssp-autocheckin.sh b/ssp-autocheckin.sh index 940e519..06fabdf 100644 --- a/ssp-autocheckin.sh +++ b/ssp-autocheckin.sh @@ -192,7 +192,7 @@ send_message() { # PushPlus 通知 if [ "${PUSHPLUS_TOKEN}" ]; then echo -e "token=${PUSHPLUS_TOKEN}&title=${TITLE}&content=${log_text}" >${PUSH_TMP_PATH} - push=$(curl -k -s --data-binary @${PUSH_TMP_PATH} "http://pushplus.hxtrip.com/send") + push=$(curl -k -s --data-binary @${PUSH_TMP_PATH} "http://www.pushplus.plus/send") push_code=$(echo ${push} | jq -r ".code" 2>&1) if [ ${push_code} -eq 200 ]; then echo -e "PushPlus 推送结果: 成功"