reset non parseable on parsing start

upgrade-2021-project
Stefan Haslinger 2022-03-15 11:55:09 +01:00
parent 199c89e7f5
commit 6e64831515
4 changed files with 7 additions and 2 deletions

File diff suppressed because one or more lines are too long

View File

@ -20,6 +20,9 @@
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background" />
<meta-data
android:name="flutterEmbedding"
android:value="2" />

View File

@ -443,7 +443,8 @@ class Activity {
..sdevFormPower = null
..avgStrydCadence = null
..sdevStrydCadence = null
..sdevVerticalOscillation = null;
..sdevVerticalOscillation = null
..nonParsable = false;
await save();
final int numberOfMessages = fitFile.dataMessages.length;

View File

@ -75,6 +75,7 @@ abstract class StravaFitDownload {
);
final Document document = parse(homePageResponse.data);
final String? csrfParam =
document.querySelector('meta[name="csrf-param"]')!.attributes['content'];
final String? csrfToken =