From 1a03a451346f961c24fecc64a411fd3d4c285f0a Mon Sep 17 00:00:00 2001 From: Dirk Alders Date: Thu, 11 Jun 2020 10:44:56 +0200 Subject: [PATCH] BugFix: Infoview Exception --- views/infoviews.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/views/infoviews.py b/views/infoviews.py index 7202105..fda2cfd 100644 --- a/views/infoviews.py +++ b/views/infoviews.py @@ -14,8 +14,8 @@ def get_wrapper_class(full_path): }.get(get_item_type(full_path), base_view) -def get_wrapper_instance(full_path, request): - return get_wrapper_class(full_path)(request, full_path) +def get_wrapper_instance(full_path, request, is_nxt_prv_item=False): + return get_wrapper_class(full_path)(request, full_path, is_nxt_prv_item) class base_view(base_userview):