Skip to content

Commit 6e03b66

Browse files
committed
fix issues URL
1 parent d9af21e commit 6e03b66

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rpc.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -238,16 +238,16 @@ void RPC::handleConnectionError(const QString& error) {
238238
} else if (error.contains("bad request", Qt::CaseInsensitive)) {
239239
explanation = QString()
240240
% "\n\nThis is most likely an internal error. Are you using zcashd v2.0 or higher? You might "
241-
% "need to file a bug report here: ";
241+
% "need to file a bug report here: https://github.com/adityapk00/zcash-qt-wallet/issues";
242242
} else if (error.contains("internal server error", Qt::CaseInsensitive) ||
243243
error.contains("rewinding")) {
244244
explanation = QString()
245245
% "\n\nIf you just started zcashd, then it's still loading and you might have to wait a while. If zcashd is ready, then you've run into "
246-
% "something unexpected, and might need to file a bug report here: ";
246+
% "something unexpected, and might need to file a bug report here: https://github.com/adityapk00/zcash-qt-wallet/issues";
247247
} else {
248248
explanation = QString()
249249
% "\n\nThis is most likely an internal error. Something unexpected happened. "
250-
% "You might need to file a bug report here: ";
250+
% "You might need to file a bug report here: https://github.com/adityapk00/zcash-qt-wallet/issues";
251251
}
252252

253253
msg.setText("There was a network connection error. The error was: \n\n"

0 commit comments

Comments
 (0)