From a651a73cbd74e26416490c1db6561965ca3370a8 Mon Sep 17 00:00:00 2001 From: lddsb Date: Mon, 20 Jan 2020 11:36:34 +0800 Subject: [PATCH] fix: default image cdn url --- plugin.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.go b/plugin.go index 6562140..a6ba3f9 100644 --- a/plugin.go +++ b/plugin.go @@ -345,12 +345,12 @@ func (p *Plugin) getEmoticon() string { func (p *Plugin) getPicURL() string { pics := make(map[string]string) // success picture url - pics["success"] = "https://ws4.sinaimg.cn/large/006tNc79gy1fz05g5a7utj30he0bfjry.jpg" + pics["success"] = "https://wx1.sinaimg.cn/large/006tNc79gy1fz05g5a7utj30he0bfjry.jpg" if p.Custom.Pic.SuccessPicURL != "" { pics["success"] = p.Custom.Pic.SuccessPicURL } // failure picture url - pics["failure"] = "https://ws1.sinaimg.cn/large/006tNc79gy1fz0b4fghpnj30hd0bdmxn.jpg" + pics["failure"] = "https://wx1.sinaimg.cn/large/006tNc79gy1fz0b4fghpnj30hd0bdmxn.jpg" if p.Custom.Pic.FailurePicURL != "" { pics["failure"] = p.Custom.Pic.FailurePicURL }