mirror of
https://github.com/nextcloud/android.git
synced 2024-11-23 13:45:35 +03:00
Fix missing appPreferences
Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
parent
cde7edba5f
commit
88e4b60486
4 changed files with 4 additions and 2 deletions
|
@ -26,6 +26,7 @@ package com.nextcloud.client.preferences;
|
|||
import android.annotation.SuppressLint;
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
import android.util.Log;
|
||||
|
||||
import com.google.gson.Gson;
|
||||
import com.nextcloud.appReview.AppReviewShownModel;
|
||||
|
|
|
@ -151,7 +151,7 @@ class FileActionsBottomSheet : BottomSheetDialogFragment(), Injectable {
|
|||
false,
|
||||
context,
|
||||
binding.thumbnailLayout.thumbnailShimmer,
|
||||
null,
|
||||
syncedFolderProvider.preferences,
|
||||
viewThemeUtils,
|
||||
syncedFolderProvider
|
||||
)
|
||||
|
|
|
@ -213,7 +213,7 @@ public class ConflictsResolveDialog extends DialogFragment implements Injectable
|
|||
false,
|
||||
getContext(),
|
||||
null,
|
||||
null,
|
||||
syncedFolderProvider.getPreferences(),
|
||||
viewThemeUtils,
|
||||
syncedFolderProvider);
|
||||
|
||||
|
|
|
@ -47,6 +47,7 @@ import android.text.TextUtils;
|
|||
import android.text.format.DateUtils;
|
||||
import android.text.style.StyleSpan;
|
||||
import android.util.DisplayMetrics;
|
||||
import android.util.Log;
|
||||
import android.view.View;
|
||||
import android.view.WindowManager;
|
||||
import android.widget.FrameLayout;
|
||||
|
|
Loading…
Reference in a new issue