Bugfix: would hang if link is of class mention
the build was successful 詳情

This commit is contained in:
tastytea 2018-08-19 22:19:48 +02:00
父節點 3808a89a13
當前提交 cade0f8a4a
簽署人: tastytea
GPG 金鑰 ID: CFC39497F1B26E07
共有 2 個檔案被更改,包括 2 行新增2 行删除

查看文件

@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.7)
project (expandurl-mastodon
VERSION 0.9.12
VERSION 0.9.13
LANGUAGES CXX
)

查看文件

@ -43,8 +43,8 @@ const std::vector<string> get_urls(const string &html)
{
string url = Easy::unescape_html(match[1].str());
v.push_back(strip(expand(url)));
buffer = match.suffix().str();
}
buffer = match.suffix().str();
}
return v;