Compare commits

..

No commits in common. "78c5c02c0ef568155a695bc1a95cd1f72159d64e" and "be1ee0b285f14d9b294a980e04b8c33b7ab919eb" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ interface versions {
const version: versions = {
api: ["/api/v2"],
app: "2024.11.1",
app: "2024.07.1",
};
module.exports = version;

View File

@ -46,7 +46,7 @@ export async function findPisByCode(
logger.debug(`pisServices.findPisByCode: Searching for PIS code: ${code}`);
const cleanCode = clean.removeNonNumeric(code);
const query = {
code: cleanCode,
code: parseInt(cleanCode),
};
const search = db.query("pis", query);
return await search;