From e23fe28a0e21c2b6b3ce1e1c131d41b7c7618ca6 Mon Sep 17 00:00:00 2001 From: ialokim <ialokim@mailbox.org> Date: Tue, 29 Aug 2023 22:06:00 +0200 Subject: [PATCH] enable blog in release builds --- .../kotlin/org/briarproject/briar/desktop/DesktopModule.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/DesktopModule.kt b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/DesktopModule.kt index ace3209199..0e7f0cebb9 100644 --- a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/DesktopModule.kt +++ b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/DesktopModule.kt @@ -1,6 +1,6 @@ /* * Briar Desktop - * Copyright (C) 2021-2022 The Briar Project + * Copyright (C) 2021-2023 The Briar Project * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as @@ -56,7 +56,7 @@ internal class DesktopModule { internal fun provideDesktopFeatureFlags() = object : DesktopFeatureFlags { override fun shouldEnablePrivateGroups() = true override fun shouldEnableForums() = true - override fun shouldEnableBlogs() = false + override fun shouldEnableBlogs() = true override fun shouldEnableTransportSettings() = false } -- GitLab