Skip to content

Commit

Permalink
increase file page cap
Browse files Browse the repository at this point in the history
  • Loading branch information
laves authored Jan 24, 2024
2 parents 5621400 + dfd5e51 commit 179dd50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@picovoice/web-utils",
"version": "1.3.3",
"version": "1.3.4",
"description": "Picovoice web utility functions",
"author": "Picovoice",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/pv_file_idb.ts
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ export class PvFileIDB extends PvFile {
* @param page The page number to format.
*/
private static createPage(page: number) {
return ("000" + page).slice(-4);
return ("00000" + page).slice(-6);
}

/**
Expand Down

0 comments on commit 179dd50

Please sign in to comment.