From 0d30d8244f3bd6d03d81a9b8e73163fa07413f75 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Wed, 13 Sep 2023 18:07:06 +0300 Subject: [PATCH] Fix not applying ooba streaming url from server history --- public/scripts/server-history.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/scripts/server-history.js b/public/scripts/server-history.js index 03d1a8fcf..fda8993d3 100644 --- a/public/scripts/server-history.js +++ b/public/scripts/server-history.js @@ -25,7 +25,7 @@ function findServers(request, resolve, serverLabel) { function selectServer(event, ui, serverLabel) { // unfocus the input - $(event.target).val(ui.item.value).trigger('blur'); + $(event.target).val(ui.item.value).trigger('input').trigger('blur'); $('[data-server-connect]').each(function () { const serverLabels = String($(this).data('server-connect')).split(',');