Replies: 1 comment 2 replies
-
you can either sign out and see the saved credentials (this is inaccurate as you can remove saved credentials) or for a more accurate reading, counting up the amount of unique database tables that exist, such as by running this snippet of javascript in the console to read from the database await sqliteService.execute((dbRow) => {
const totalUsers = dbRow[0];
console.log(`Total unique users: ${totalUsers}`);
}, `
SELECT COUNT(*) AS total_users
FROM sqlite_master
WHERE type = 'table'
AND name LIKE '%_feed_online_offline';
`); or through executing this query with DB Browser for SQLite SELECT COUNT(*) AS total_users
FROM sqlite_master
WHERE type = 'table'
AND name LIKE '%_feed_online_offline'; |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Is there a way we can see what accounts we saved to VRCX?
Beta Was this translation helpful? Give feedback.
All reactions