From 8ce7d4c9fcb8aaccbe176b1191661b3ce5b7ca59 Mon Sep 17 00:00:00 2001 From: Matt Baer Date: Wed, 12 Feb 2020 11:39:39 -0500 Subject: [PATCH] Add isIgnorableError to database-lib.go --- database-lib.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/database-lib.go b/database-lib.go index 58beb05..b6b4be2 100644 --- a/database-lib.go +++ b/database-lib.go @@ -1,7 +1,7 @@ // +build wflib /* - * Copyright © 2019 A Bunch Tell LLC. + * Copyright © 2019-2020 A Bunch Tell LLC. * * This file is part of WriteFreely. * @@ -18,3 +18,7 @@ package writefreely func (db *datastore) isDuplicateKeyErr(err error) bool { return false } + +func (db *datastore) isIgnorableError(err error) bool { + return false +}