From 9f0e030c01ccbf5e577760397b692ae49eed4638 Mon Sep 17 00:00:00 2001 From: Ouail Date: Tue, 15 Oct 2024 09:13:55 +0100 Subject: [PATCH] Fix currency attribute --- src/Channel/Models/Channel.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Channel/Models/Channel.php b/src/Channel/Models/Channel.php index c1ee95a5..e8fba818 100644 --- a/src/Channel/Models/Channel.php +++ b/src/Channel/Models/Channel.php @@ -115,7 +115,7 @@ public function getLanguage(): string public function getCurrency(): ?string { - return $this->language; + return $this->currency; } public function getDomain(): ?string