1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-06 23:44:43 -04:00

Retry only for https protocol

This commit is contained in:
Witold Filipczyk 2017-07-23 19:50:15 +02:00
parent affcebbab1
commit f86be65971

View File

@ -313,7 +313,7 @@ print_error_dialog(struct session *ses, struct connection_state state,
add_to_string(&msg, get_state_message(state, ses->tab->term)); add_to_string(&msg, get_state_message(state, ses->tab->term));
if (!uri) { if (!uri || uri->protocol != PROTOCOL_HTTPS) {
info_box(ses->tab->term, MSGBOX_FREE_TEXT, info_box(ses->tab->term, MSGBOX_FREE_TEXT,
N_("Error"), ALIGN_CENTER, N_("Error"), ALIGN_CENTER,
msg.source); msg.source);