changeset 96:d6953ebfbe7e

TabBoard/TabCalendarBoard: Inserting cards that failed to resolve as empty, instead of skipping them
author Fox
date Thu, 23 Feb 2023 20:50:19 +0100
parents 666e6253fbdf
children babc1a1305fd
files src/junotu/TabBoard.java src/junotu/TabCalendarBoard.java
diffstat 2 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/junotu/TabBoard.java	Thu Feb 23 20:26:50 2023 +0100
+++ b/src/junotu/TabBoard.java	Thu Feb 23 20:50:19 2023 +0100
@@ -209,6 +209,7 @@
 		
 		if( cardsSplit[i] == null ) {
 		    System.out.print("Column '"+card.titleGet()+"', identifier "+Long.toString(card.identifierGet())+": Failed to retrieve card identifier by index "+Integer.toString(i)+". Full cards tag: '"+cardsString+"'\n");
+		    insertCard( null, -1 );
 		    continue;
 		}
 
--- a/src/junotu/TabCalendarBoard.java	Thu Feb 23 20:26:50 2023 +0100
+++ b/src/junotu/TabCalendarBoard.java	Thu Feb 23 20:50:19 2023 +0100
@@ -212,6 +212,7 @@
 		
 		if( cardsSplit[i] == null ) {
 		    System.out.print("Column '"+card.titleGet()+"', identifier "+Long.toString(card.identifierGet())+": Failed to retrieve card identifier by index "+Integer.toString(i)+". Full cards tag: '"+cardsString+"'\n");
+		    insertCard( null, -1 );
 		    continue;
 		}