Skip to content

Commit

Permalink
fix: align base template to socketio port default 9000 (frappe#22298)
Browse files Browse the repository at this point in the history
follow up on frappe#22277
  • Loading branch information
blaggacao authored Sep 3, 2023
1 parent 1259441 commit 2d73b8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
frappe.ready_events.push(fn);
}
window.dev_server = {{ dev_server }};
window.socketio_port = {{ (frappe.socketio_port or 'null') }};
window.socketio_port = {{ (frappe.socketio_port or 9000) }};
window.show_language_picker = {{ show_language_picker or 'false' }};
</script>
</head>
Expand Down

0 comments on commit 2d73b8f

Please sign in to comment.