Compare commits
No commits in common. "78c5c02c0ef568155a695bc1a95cd1f72159d64e" and "be1ee0b285f14d9b294a980e04b8c33b7ab919eb" have entirely different histories.
78c5c02c0e
...
be1ee0b285
@ -5,7 +5,7 @@ interface versions {
|
||||
|
||||
const version: versions = {
|
||||
api: ["/api/v2"],
|
||||
app: "2024.11.1",
|
||||
app: "2024.07.1",
|
||||
};
|
||||
|
||||
module.exports = version;
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user