summaryrefslogtreecommitdiff
path: root/src/app_console
diff options
context:
space:
mode:
authorjacqueline <me@jacqueline.id.au>2023-10-13 11:13:20 +1100
committerjacqueline <me@jacqueline.id.au>2023-10-13 11:13:20 +1100
commit20d1c280a77eadcea18438453dc37daaf1d85e2d (patch)
tree9ec518001df706f9cfa7c46c01de622b900f47d5 /src/app_console
parent53cf476876560723031128a0f1b47135de7167d1 (diff)
downloadtangara-fw-20d1c280a77eadcea18438453dc37daaf1d85e2d.tar.gz
Remove templating of Continuation
Diffstat (limited to 'src/app_console')
-rw-r--r--src/app_console/app_console.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/app_console/app_console.cpp b/src/app_console/app_console.cpp
index ebd5559a..7af484aa 100644
--- a/src/app_console/app_console.cpp
+++ b/src/app_console/app_console.cpp
@@ -194,7 +194,7 @@ int CmdDbTracks(int argc, char** argv) {
}
if (res->next_page()) {
auto continuation = res->next_page().value();
- res.reset(db->GetPage(&continuation).get());
+ res.reset(db->GetPage<database::Track>(&continuation).get());
} else {
break;
}