From 47e77f9fac1155c536b2b87fec552c7fcce66fa6 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Mon, 01 Jun 2026 18:06:34 +0000
Subject: [PATCH] =Timeline block fixes. Next up: adding article schema classes

---
 assets/js/concise/Queue.js |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/assets/js/concise/Queue.js b/assets/js/concise/Queue.js
index 5623e5e..1122684 100644
--- a/assets/js/concise/Queue.js
+++ b/assets/js/concise/Queue.js
@@ -17,6 +17,7 @@
 		this.items = new Map();
 		this.subscribers = new Set();
 		this.loadFromStorage = false;
+		this.failedFetches = 0;
 
 		this.api = jvbSettings.api;
 		this.endpoint = 'queue';
@@ -626,7 +627,7 @@
 				if (result.id && operation.id !== result.id) {
 					operation = await this.handleServerMerge(operation, result);
 				} else {
-					operation.status = result.status??'failed';
+					operation.status = result.status??'pending';
 					operation.serverData = result;
 					this.updateOperationStatus(operation.id, operation.status);
 				}
@@ -801,6 +802,8 @@
 				return;
 			}
 		} catch (error) {
+			this.stopPolling();
+			this.updatePanel('synced');
 			console.error('Polling error:', error);
 		}
 

--
Gitblit v1.10.0