Skip to content

Commit

Permalink
update move transactionId param
Browse files Browse the repository at this point in the history
  • Loading branch information
skript023 committed Apr 24, 2024
1 parent 04d79c0 commit 5e378f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/module/payment/services/payment_service.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ namespace gaboot

if (transaction.toJson().empty())
{
throw NotFoundException(fmt::format("Unable found transaction id {}", transactionId));
throw NotFoundException(fmt::format("Unable found transaction id {}", std::move(transactionId)));
}

m_response.m_message = "Transaction found";
Expand Down

0 comments on commit 5e378f2

Please sign in to comment.