Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix : Ensure galaxy, system, position and type available #610

Merged
merged 1 commit into from
Mar 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions public/js/ingame.js
Original file line number Diff line number Diff line change
Expand Up @@ -76903,6 +76903,12 @@ FleetDispatcher.prototype.fetchTargetPlayerData = function () {
params.recycler = 1;
}

// Ensure all our params are existent, otherwise no point posting the data.
if (!params.galaxy || !params.system || !params.position || !params.type) {
this.stopLoading();
return;
}

$.post(this.checkTargetUrl, params, function (data) {
let status = data.status || 'failure';
$("#additionalFleetSpeedInfo").html(data.additionalFlightSpeedinfo);
Expand Down
6 changes: 6 additions & 0 deletions public/js/ingame.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -76903,6 +76903,12 @@ FleetDispatcher.prototype.fetchTargetPlayerData = function () {
params.recycler = 1;
}

// Ensure all our params are existent, otherwise no point posting the data.
if (!params.galaxy || !params.system || !params.position || !params.type) {
this.stopLoading();
return;
}

$.post(this.checkTargetUrl, params, function (data) {
let status = data.status || 'failure';
$("#additionalFleetSpeedInfo").html(data.additionalFlightSpeedinfo);
Expand Down
4 changes: 2 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"/css/ingame.css": "/css/ingame.css?id=187eb3c9a997d0496baa94d59cca9f72",
"/css/outgame.css": "/css/outgame.css?id=0edfd34484fc3ec74eca0604a470461f",
"/js/ingame.js": "/js/ingame.js?id=f7ca8c70d70904454426ad83cb49783f",
"/js/ingame.min.js": "/js/ingame.min.js?id=f7ca8c70d70904454426ad83cb49783f",
"/js/ingame.js": "/js/ingame.js?id=7b486089ea4717611bbc6a457c331f3c",
"/js/ingame.min.js": "/js/ingame.min.js?id=7b486089ea4717611bbc6a457c331f3c",
"/js/outgame.js": "/js/outgame.js?id=5fa6ee5cdc34001db0bdccd06a7f676c",
"/js/outgame.min.js": "/js/outgame.min.js?id=5fa6ee5cdc34001db0bdccd06a7f676c"
}
6 changes: 6 additions & 0 deletions resources/js/ingame/e7c74974620fa35b197315ebdbb8c2.js
Original file line number Diff line number Diff line change
Expand Up @@ -47062,6 +47062,12 @@ FleetDispatcher.prototype.fetchTargetPlayerData = function () {
params.recycler = 1;
}

// Ensure all our params are existent, otherwise no point posting the data.
if (!params.galaxy || !params.system || !params.position || !params.type) {
this.stopLoading();
return;
}

$.post(this.checkTargetUrl, params, function (data) {
let status = data.status || 'failure';
$("#additionalFleetSpeedInfo").html(data.additionalFlightSpeedinfo);
Expand Down
Loading