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

このコミットが含まれているのは:
tastytea 2018-08-19 22:19:48 +02:00
コミット 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;