Skip to content

Commit 69901ef

Browse files
committed
Merge remote-tracking branch 'origin/main' into dev
# Conflicts: # lib/services/account.dart # lib/services/avatars.dart # lib/services/storage.dart
2 parents cead932 + e061bca commit 69901ef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+3880
-3777
lines changed

.github/workflows/format.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,21 @@ on:
1010
jobs:
1111
format:
1212
runs-on: ubuntu-latest
13-
container:
14-
image: dart:stable
1513

1614
steps:
1715
- name: Checkout repository
1816
uses: actions/checkout@v4
1917
with:
2018
persist-credentials: true
2119
ref: ${{ github.event.pull_request.head.ref }}
20+
21+
- name: Install Flutter
22+
uses: subosito/flutter-action@v2
23+
with:
24+
channel: stable
25+
26+
- name: Install dependencies
27+
run: flutter pub get
2228

2329
- name: Format Dart code
2430
run: dart format .
@@ -29,5 +35,5 @@ jobs:
2935
- name: Add & Commit
3036
uses: EndBug/add-and-commit@v9.1.4
3137
with:
32-
add: lib
38+
add: '["lib", "test"]'
3339

lib/query.dart

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -130,16 +130,16 @@ class Query {
130130
Query._('updatedBetween', null, [start, end]).toString();
131131

132132
static String or(List<String> queries) => Query._(
133-
'or',
134-
null,
135-
queries.map((query) => jsonDecode(query)).toList(),
136-
).toString();
133+
'or',
134+
null,
135+
queries.map((query) => jsonDecode(query)).toList(),
136+
).toString();
137137

138138
static String and(List<String> queries) => Query._(
139-
'and',
140-
null,
141-
queries.map((query) => jsonDecode(query)).toList(),
142-
).toString();
139+
'and',
140+
null,
141+
queries.map((query) => jsonDecode(query)).toList(),
142+
).toString();
143143

144144
/// Specify which attributes should be returned by the API call.
145145
static String select(List<String> attributes) =>

0 commit comments

Comments
 (0)