Skip to content

Commit cb0362b

Browse files
committed
fix: 修复电影手动刮削语言错误
Closes #215
1 parent ad90649 commit cb0362b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/media3.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
- run: git clone https://github.com/androidx/media.git
99

1010
- working-directory: media
11-
run: git checkout tags/1.6.1
11+
run: git checkout tags/1.8.0
1212

1313
- working-directory: media/libraries/decoder_av1/src/main/jni
1414
run: git clone https://github.com/google/cpu_features
@@ -30,8 +30,8 @@ jobs:
3030
with:
3131
cmake-version: '3.16.x'
3232

33-
- working-directory: media
34-
run: ./gradlew :lib-decode-av1:build
33+
# - working-directory: media
34+
# run: ./gradlew :lib-decode-av1:build
3535

3636
- run: git clone https://github.com/FFmpeg/FFmpeg
3737

@@ -61,7 +61,7 @@ jobs:
6161
run: |
6262
mkdir artifacts
6363
cp media/libraries/decoder_ffmpeg/buildout/outputs/aar/lib-decoder-ffmpeg-release.aar artifacts/
64-
cp media/libraries/decoder_av1/buildout/outputs/aar/lib-decoder-av1-release.aar artifacts/
64+
# cp media/libraries/decoder_av1/buildout/outputs/aar/lib-decoder-av1-release.aar artifacts/
6565

6666
- name: Upload Artifacts
6767
uses: actions/upload-artifact@v4

packages/api/lib/src/api_platform_interface.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,10 +360,10 @@ abstract class ApiPlatform extends PlatformInterface {
360360
return client.post('/movie/metadata/update/id', data: data);
361361
}
362362

363-
Future<void> movieScraperById(dynamic id, String scraperId, String scraperType, String? language) {
363+
Future<void> movieScraperById(dynamic id, String scraperId, String scraperType, String? scraperLang) {
364364
return client.post(
365365
'/movie/scraper/id',
366-
data: {'id': id, 'scraperId': scraperId, 'scraperType': scraperType, 'language': language},
366+
data: {'id': id, 'scraperId': scraperId, 'scraperType': scraperType, 'scraperLang': scraperLang},
367367
);
368368
}
369369

0 commit comments

Comments
 (0)