Skip to content

Commit

Permalink
Fix lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
rkistner committed Nov 14, 2023
1 parent b9c5286 commit 7a394db
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion lib/src/schema_logic.dart
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ END"""
}

List<String> createViewTriggerStatementsLocal(Table table) {
final type = table.name;
final viewName = table.viewName;
final internalNameE = quoteIdentifier(table.internalName);

Expand Down
2 changes: 1 addition & 1 deletion lib/src/streaming_sync.dart
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ HttpException getError(http.Response response) {
final body = response.body;
final decoded = convert.jsonDecode(body);
final details = decoded['error']?['details']?[0] ?? body;
final message = '${response.reasonPhrase ?? "Request failed"}: ${details}';
final message = '${response.reasonPhrase ?? "Request failed"}: $details';
return HttpException(message, uri: response.request?.url);
} on Error catch (_) {
return HttpException(response.reasonPhrase ?? "Request failed",
Expand Down

0 comments on commit 7a394db

Please sign in to comment.