Allow producer<TextWithEntities>() | map(ToLink).

This commit is contained in:
John Preston 2023-11-28 12:52:31 +04:00
parent 66ca90c1b2
commit 44161f183c

View file

@ -69,7 +69,7 @@ inline constexpr auto Upper = details::ToUpperType{};
}
[[nodiscard]] inline auto ToLink(const QString &url = "internal:action") {
return rpl::map([=](const QString &text) {
return rpl::map([=](const auto &text) {
return Link(text, url);
});
}