mirror of
https://github.com/mue/mue.git
synced 2026-07-08 06:33:39 +02:00
feat(queue): implement centralized queue management and clearing logic for background prefetch queues
This commit is contained in:
23
check_installed.html
Normal file
23
check_installed.html
Normal file
@@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head><title>Check localStorage</title></head>
|
||||
<body>
|
||||
<h3>Checking installed photo packs...</h3>
|
||||
<pre id="output"></pre>
|
||||
<script>
|
||||
const installed = JSON.parse(localStorage.getItem('installed') || '[]');
|
||||
const photoPacks = installed.filter(item => item.type === 'photos');
|
||||
|
||||
document.getElementById('output').textContent = JSON.stringify(photoPacks, null, 2);
|
||||
|
||||
// Check for blur_hash
|
||||
photoPacks.forEach(pack => {
|
||||
console.log(`Pack: ${pack.name}`);
|
||||
if (pack.photos && pack.photos.length > 0) {
|
||||
console.log('First photo has blur_hash?', !!pack.photos[0].blur_hash);
|
||||
console.log('First photo:', pack.photos[0]);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user