Merge branch 'development'

This commit is contained in:
Anton Stubenbord
2023-02-12 12:50:15 +01:00
3 changed files with 6 additions and 4 deletions

View File

@@ -0,0 +1 @@
* Add F-Droid metadata

View File

@@ -10,8 +10,10 @@ class DioFileService extends FileService {
DioFileService(this.dio); DioFileService(this.dio);
@override @override
Future<FileServiceResponse> get(String url, Future<FileServiceResponse> get(
{Map<String, String>? headers}) async { String url, {
Map<String, String>? headers,
}) async {
final response = await dio.get<ResponseBody>( final response = await dio.get<ResponseBody>(
url, url,
options: Options( options: Options(

View File

@@ -161,8 +161,7 @@ void main() async {
value: connectivityStatusService, value: connectivityStatusService,
), ),
Provider<LocalNotificationService>.value( Provider<LocalNotificationService>.value(
value: localNotificationService, value: localNotificationService),
),
Provider.value(value: DocumentChangedNotifier()), Provider.value(value: DocumentChangedNotifier()),
], ],
child: MultiRepositoryProvider( child: MultiRepositoryProvider(