From e912bec3502c1a718e398cba216b252f873be467 Mon Sep 17 00:00:00 2001 From: Nathan Mattes Date: Fri, 9 Feb 2024 16:52:26 +0100 Subject: [PATCH] Trigger status-loading immediately (and not 30 seconds later) See #1227, #1229, but for status-reporting --- .../Report/ReportStatus/ReportStatusViewController.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift index 65e7046d0..9e51f8eb6 100644 --- a/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift +++ b/Mastodon/Scene/Report/ReportStatus/ReportStatusViewController.swift @@ -117,7 +117,9 @@ extension ReportStatusViewController { } navigationActionView.backButton.addTarget(self, action: #selector(ReportStatusViewController.skipButtonDidPressed(_:)), for: .touchUpInside) - navigationActionView.nextButton.addTarget(self, action: #selector(ReportStatusViewController.nextButtonDidPressed(_:)), for: .touchUpInside) + navigationActionView.nextButton.addTarget(self, action: #selector(ReportStatusViewController.nextButtonDidPressed(_:)), for: .touchUpInside) + + viewModel.listBatchFetchViewModel.shouldFetch.send() } }