@@ -235,9 +235,9 @@ void PaymentServer::handleURIOrFile(const QString& s)
235
235
if (!IsValidDestinationString (recipient.address .toStdString ())) {
236
236
if (uri.hasQueryItem (" r" )) { // payment request
237
237
Q_EMIT message (tr (" URI handling" ),
238
- tr (" Cannot process payment request because BIP70 is not supported." )+
239
- tr ( " Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored." )+
240
- tr ( " If you are receiving this error you should request the merchant provide a BIP21 compatible URI." ),
238
+ tr (" Cannot process payment request because BIP70 is not supported.\n "
239
+ " Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored.\n "
240
+ " If you are receiving this error you should request the merchant provide a BIP21 compatible URI." ),
241
241
CClientUIInterface::ICON_WARNING);
242
242
}
243
243
Q_EMIT message (tr (" URI handling" ), tr (" Invalid payment address %1" ).arg (recipient.address ),
@@ -258,9 +258,9 @@ void PaymentServer::handleURIOrFile(const QString& s)
258
258
if (QFile::exists (s)) // payment request file
259
259
{
260
260
Q_EMIT message (tr (" Payment request file handling" ),
261
- tr (" Cannot process payment request because BIP70 is not supported." )+
262
- tr ( " Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored." )+
263
- tr ( " If you are receiving this error you should request the merchant provide a BIP21 compatible URI." ),
261
+ tr (" Cannot process payment request because BIP70 is not supported.\n "
262
+ " Due to widespread security flaws in BIP70 it's strongly recommended that any merchant instructions to switch wallets be ignored.\n "
263
+ " If you are receiving this error you should request the merchant provide a BIP21 compatible URI." ),
264
264
CClientUIInterface::ICON_WARNING);
265
265
}
266
266
}
0 commit comments