Skip to content

Commit bba2fb4

Browse files
committed
fix(dynamite_runtime): Remove duplicate status code from DynamiteStatusCodeException message
Signed-off-by: provokateurin <kate@provokateurin.de>
1 parent 49008f8 commit bba2fb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/dynamite/dynamite_runtime/lib/src/client/exception.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class DynamiteStatusCodeException extends DynamiteApiException {
2626
Map<String, Object?>? headers,
2727
Object? body,
2828
Uri? url,
29-
}) : super('Invalid status code $statusCode, $statusCode, headers: $headers, body: $body', url);
29+
}) : super('Invalid status code $statusCode, headers: $headers, body: $body', url);
3030

3131
/// The returned status code when the exception was thrown.
3232
final int statusCode;

0 commit comments

Comments
 (0)