diff --git a/Plugins/webtitle.go b/Plugins/webtitle.go index 897ed19..f728419 100644 --- a/Plugins/webtitle.go +++ b/Plugins/webtitle.go @@ -197,7 +197,7 @@ func getRespBody(oResp *http.Response) ([]byte, error) { } func gettitle(body []byte) (title string) { - re := regexp.MustCompile("(?ims)(.*?)") + re := regexp.MustCompile("(?ims)(.*?)") find := re.FindSubmatch(body) if len(find) > 1 { title = string(find[1])