From cb09016539492136718106b6bd7e8016bd6ddcb0 Mon Sep 17 00:00:00 2001 From: Deon George Date: Wed, 10 Jan 2024 16:58:35 +1100 Subject: [PATCH] Partially revert #9cf0f1e so that we create jobs by Address ID, not System ID --- app/Jobs/AddressPoll.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/AddressPoll.php b/app/Jobs/AddressPoll.php index 66eca44..ebfcd41 100644 --- a/app/Jobs/AddressPoll.php +++ b/app/Jobs/AddressPoll.php @@ -158,6 +158,6 @@ class AddressPoll implements ShouldQueue, ShouldBeUnique public function uniqueId(): string { - return $this->ao->system_id; + return $this->ao->id; } } \ No newline at end of file