From 7fdac4239502873927fab34e03cf3d87a72eb480 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Sun, 28 Aug 2022 07:59:29 +0100 Subject: [PATCH] fix property not found --- .../src/main/groovy/com/muwire/core/search/BrowseSession.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/groovy/com/muwire/core/search/BrowseSession.groovy b/core/src/main/groovy/com/muwire/core/search/BrowseSession.groovy index 562958b7..440a2fa0 100644 --- a/core/src/main/groovy/com/muwire/core/search/BrowseSession.groovy +++ b/core/src/main/groovy/com/muwire/core/search/BrowseSession.groovy @@ -242,7 +242,7 @@ class BrowseSession implements Runnable { String getJoined() { if (joined == null) { - def encoded = nextPath.path.collect {Base64.encode(DataUtil.encodei18nString(it))} + def encoded = path.collect {Base64.encode(DataUtil.encodei18nString(it))} joined = encoded.join(",") } joined