v1.5.31 - let Armoria know the origin

This commit is contained in:
Azgaar 2021-02-14 19:22:54 +03:00
parent a42fd3a405
commit 79584fffac

View file

@ -180,7 +180,7 @@ function editEmblem(type, id, el) {
function openInArmoria() { function openInArmoria() {
const coa = el.coa && el.coa !== "custom" ? el.coa : {t1: "sable"}; const coa = el.coa && el.coa !== "custom" ? el.coa : {t1: "sable"};
const json = JSON.stringify(coa).replaceAll("#", "%23"); const json = JSON.stringify(coa).replaceAll("#", "%23");
const url = `http://azgaar.github.io/Armoria/?coa=${json}`; const url = `http://azgaar.github.io/Armoria/?coa=${json}&from=FMG`;
openURL(url); openURL(url);
} }