Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
julienmalard committed Jan 14, 2025
1 parent 3162bf7 commit 7ef2ab3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.5.5",
"version": "1.5.6",
"license": "AGPL-3.0-or-later",
"name": "@constl/ipa",
"author": "Julien Jean Malard-Adam",
Expand Down
10 changes: 5 additions & 5 deletions src/automatisation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -755,16 +755,16 @@ const lancerAutomatisation = async <T extends SpécificationAutomatisation>({
? parseInt(dernièreFoisChaîne)
: -Infinity;
const tempsDepuisDernièreFois = maintenant - dernièreFois;
const exécuterDans = Math.max(obtTempsInterval(spéc.fréquence) - tempsDepuisDernièreFois, 0)
const exécuterDans = Math.max(
obtTempsInterval(spéc.fréquence) - tempsDepuisDernièreFois,
0,
);
const nouvelÉtat: ÉtatProgrammée = {
type: "programmée",
à: Date.now() + exécuterDans,
};
fÉtat(nouvelÉtat);
const crono = setTimeout(
fAutoAvecÉtatsRécursif,
exécuterDans,
);
const crono = setTimeout(fAutoAvecÉtatsRécursif, exécuterDans);
dicFOublierIntervale.f = async () => clearTimeout(crono);

const fOublier = async () => {
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated by genversion.
export const version = "1.5.5";
export const version = "1.5.6";

0 comments on commit 7ef2ab3

Please sign in to comment.