We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5621400 + dfd5e51 commit 179dd50Copy full SHA for 179dd50
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "@picovoice/web-utils",
3
- "version": "1.3.3",
+ "version": "1.3.4",
4
"description": "Picovoice web utility functions",
5
"author": "Picovoice",
6
"license": "Apache-2.0",
src/pv_file_idb.ts
@@ -355,7 +355,7 @@ export class PvFileIDB extends PvFile {
355
* @param page The page number to format.
356
*/
357
private static createPage(page: number) {
358
- return ("000" + page).slice(-4);
+ return ("00000" + page).slice(-6);
359
}
360
361
/**
0 commit comments