We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 713a8fa commit 86c07ffCopy full SHA for 86c07ff
src/Client.php
@@ -191,6 +191,17 @@ public function getTrackingSnippet(string $domain): CallResult
191
);
192
}
193
194
+ if ($response->getStatusCode() === 404) {
195
+ return new CallResult(
196
+ false,
197
198
+ $this->getRemainingRequests($response),
199
+ $this->getMaxRequests($response),
200
+ $json['message'] ? [$json['message']] : [],
201
+ null
202
+ );
203
+ }
204
+
205
return new CallResult(
206
false,
207
0 commit comments