mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-22 22:33:34 -07:00
fix: incompatible operand types
This commit is contained in:
parent
6f103cfdc8
commit
e1c9bca999
1 changed files with 1 additions and 1 deletions
|
@ -654,7 +654,7 @@ namespace
|
|||
relativePath = relativePath.mid(1);
|
||||
|
||||
const QString absoluteUrl = !host.isEmpty()
|
||||
? (defaultScheme + u":" + host) : (normalizedBaseUrl + relativePath);
|
||||
? QString(defaultScheme + u":" + host) : QString(normalizedBaseUrl + relativePath);
|
||||
const QString fullMatch = match.captured(0);
|
||||
const QString prefix = match.captured(1);
|
||||
const QString suffix = match.captured(7);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue