From fb1eda51eeff17be5c8f1b75fb3ac03116befbe4 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Wed, 26 Feb 2020 02:24:15 -0800 Subject: [PATCH] DualIndexHashObject needs create_metadata() for compatibility with DualIndexSQLiteObject --- PBot/DualIndexHashObject.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PBot/DualIndexHashObject.pm b/PBot/DualIndexHashObject.pm index 8b868f7d..4e8130a9 100644 --- a/PBot/DualIndexHashObject.pm +++ b/PBot/DualIndexHashObject.pm @@ -363,4 +363,7 @@ sub remove { else { return "$self->{name}: [$name1] $name2.$data_index does not exist."; } } +# for compatibility with SQLite object +sub create_metadata { } + 1;