Skip to content

Commit

Permalink
refactor: update own ID match
Browse files Browse the repository at this point in the history
  • Loading branch information
pjsier committed Nov 1, 2024
1 parent 4821208 commit 8b9be0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/utils/queries.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ async function queryPGDB({
}

const zipMatch = `%${code}%`
const ownIdMatch = `%${decodeURI(ownid).toUpperCase()}%`
const ownIdMatch = `%${decodeURI(ownid)}%`

/* eslint-disable no-case-declarations */
switch (PGDBQueryType) {
Expand Down

0 comments on commit 8b9be0e

Please sign in to comment.