From aa0f4d436519e15fe57aec47abc702a6263ea42a Mon Sep 17 00:00:00 2001 From: Simon Quigley Date: Wed, 18 Dec 2024 18:25:51 -0600 Subject: [PATCH] Fix caching harder --- src/source_package_publishing_history.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/source_package_publishing_history.cpp b/src/source_package_publishing_history.cpp index ac216e3..f44423c 100644 --- a/src/source_package_publishing_history.cpp +++ b/src/source_package_publishing_history.cpp @@ -37,8 +37,8 @@ source_package_publishing_history::source_package_publishing_history() if (ds) { ds->set_lp(lp); - _distro_series = std::move(ds.value()); - return ds; + _distro_series = ds.value(); + return _distro_series; } return std::nullopt;