Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 25, 2024
1 parent 61e10fd commit 6d80f36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/o1.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ void O1::link() {
headers.append(O0RequestParameter(O2_OAUTH_SIGNATURE, generateSignature(headers, request, requestParameters(), QNetworkAccessManager::PostOperation)));
log( QStringLiteral( "O1:link: Token request headers:" ) );
for(const O0RequestParameter &param: qAsConst(headers)) {
log( QStringLiteral( " %1=%2" ).arg( param.name, param.value ) );
log( QStringLiteral( " %1=%2" ).arg( QString( param.name ), QString( param.value ) ) );
}

// Clear request token
Expand Down

0 comments on commit 6d80f36

Please sign in to comment.