Skip to content

Commit 6289e7a

Browse files
committed
Fixes display issue with socket errors
1 parent 22b0bbf commit 6289e7a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/lang/en/server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
*/
1010

1111
'ajax' => [
12-
'socket_error' => 'We were unable to connect to the main Socket.IO server, there may be network issues currently. <br /><br />If this is your first time seeing this message it may be because you need to accept this server\'s SSL certificate. Please click this notification and accept the certificate.',
12+
'socket_error' => 'We were unable to connect to the main Socket.IO server, there may be network issues currently. <br /><br />If this is your first time seeing this message it may be because you need to accept this servers SSL certificate. Please click this notification and accept the certificate.',
1313
'socket_status' => 'This server\'s power status has changed to',
1414
'socket_status_crashed' => 'This server has been detected as CRASHED.',
1515
],

resources/views/layouts/master.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
$('#applyUpdate').removeClass('fa-circle-o-notch fa-spinner fa-spin').addClass('fa-question-circle').css({ color: '#FF9900' });
5050
if(typeof notifySocketError !== 'object') {
5151
notifySocketError = $.notify({
52-
message: '{{ trans('server.ajax.socket_error') }}',
52+
message: '{!! trans('server.ajax.socket_error') !!}',
5353
url: 'https://{{ $node->fqdn }}:{{ $node->daemonListen }}',
5454
target: '_blank'
5555
}, {

0 commit comments

Comments
 (0)