diff --git a/apps/authentiwatch/interface.html b/apps/authentiwatch/interface.html
index 12c0c1d8d..0b7774557 100644
--- a/apps/authentiwatch/interface.html
+++ b/apps/authentiwatch/interface.html
@@ -333,7 +333,8 @@ function loadTokens() {
*/
function saveTokens() {
Util.showModal('Saving...');
- Puck.write(`\x10require('Storage').write(${JSON.stringify('authentiwatch.json')},${JSON.stringify(tokens)})\n`,()=>{
+ let save={data:tokens,count:tokens.length};
+ Puck.write(`\x10require('Storage').write(${JSON.stringify('authentiwatch.json')},${JSON.stringify(save)})\n`,()=>{
Util.hideModal();
});
}