From 14b875dc232af359b9271d96fbe56cc196373aee Mon Sep 17 00:00:00 2001
From: Anony <solosenpai@protonmail.com>
Date: Fri, 17 Jan 2020 15:58:43 -0800
Subject: [PATCH] prevent error in backwards compat

---
 src/js/datatypeCleanupJS.js | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/js/datatypeCleanupJS.js b/src/js/datatypeCleanupJS.js
index d5a218fd570..0d7d0e0ee5e 100644
--- a/src/js/datatypeCleanupJS.js
+++ b/src/js/datatypeCleanupJS.js
@@ -2420,6 +2420,9 @@ App.Entity.Utils.RARuleDatatypeCleanup = function() {
 			if (k === 'assignment' || k === 'clothes' || k === 'label' || k === 'removeLabel' ) {
 				continue;
 			}
+			if (v[0] === undefined) {
+				continue;
+			}
 			if (v[0].toLowerCase() !== v[0]) {
 				set[k] = v.charAt(0).toLowerCase() + v.substr(1);
 			}
-- 
GitLab