Skip to content

Commit

Permalink
Fix build.
Browse files Browse the repository at this point in the history
  • Loading branch information
dchapyshev committed Dec 1, 2023
1 parent 89131f1 commit 4465c4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/host/client_session_file_transfer.cc
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ void ClientSessionFileTransfer::onStarted()
while (fgets(buffer.data(), buffer.size(), pipe.get()))
{
std::u16string line = base::toLower(base::utf16FromLocal8Bit(buffer.data()));
if (!line.contains(u":0"))
if (!base::contains(line, u":0"))
continue;

std::vector<std::u16string_view> splitted = base::splitStringView(
Expand Down

0 comments on commit 4465c4a

Please sign in to comment.