diff options
author | ByteHamster <info@bytehamster.com> | 2021-07-13 18:56:13 +0200 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2021-07-13 18:56:13 +0200 |
commit | 335d7fca6cbed49a38e0193197fb24e0871687bc (patch) | |
tree | 7852fdf721313c4a1fc468bacb6171a45eb14327 /app | |
parent | ca9ad0d2d33ce8c4299525e32664da33e28b9d91 (diff) | |
download | AntennaPod-335d7fca6cbed49a38e0193197fb24e0871687bc.zip |
Fix preference name of swipe actions
Diffstat (limited to 'app')
-rw-r--r-- | app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java b/app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java index b8b39c578..50c7c1ae5 100644 --- a/app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java +++ b/app/src/main/java/de/danoeh/antennapod/fragment/swipeactions/SwipeActions.java @@ -31,8 +31,8 @@ import it.xabaras.android.recyclerview.swipedecorator.RecyclerViewSwipeDecorator public class SwipeActions extends ItemTouchHelper.SimpleCallback implements LifecycleObserver { public static final String PREF_NAME = "SwipeActionsPrefs"; - public static final String KEY_PREFIX_SWIPEACTIONS = "PrefSwipeActions6543"; - public static final String KEY_PREFIX_NO_ACTION = "PrefNoSwipeAction6543"; + public static final String KEY_PREFIX_SWIPEACTIONS = "PrefSwipeActions"; + public static final String KEY_PREFIX_NO_ACTION = "PrefNoSwipeAction"; public static final List<SwipeAction> swipeActions = Collections.unmodifiableList( Arrays.asList(new AddToQueueSwipeAction(), new RemoveFromInboxSwipeAction(), |