Default keep alive each 9 minutes

This commit is contained in:
M66B 2018-10-13 07:18:26 +00:00
parent 788b2a07eb
commit 74082df55a
2 changed files with 2 additions and 2 deletions

View File

@ -626,7 +626,7 @@ public class FragmentAccount extends FragmentEx {
if (TextUtils.isEmpty(password)) if (TextUtils.isEmpty(password))
throw new Throwable(getContext().getString(R.string.title_no_password)); throw new Throwable(getContext().getString(R.string.title_no_password));
if (TextUtils.isEmpty(interval)) if (TextUtils.isEmpty(interval))
interval = "12"; interval = "9";
if (synchronize && drafts == null) if (synchronize && drafts == null)
throw new Throwable(getContext().getString(R.string.title_no_drafts)); throw new Throwable(getContext().getString(R.string.title_no_drafts));
if (Color.TRANSPARENT == color) if (Color.TRANSPARENT == color)

View File

@ -334,7 +334,7 @@
android:id="@+id/etInterval" android:id="@+id/etInterval"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:hint="12" android:hint="9"
android:inputType="number" android:inputType="number"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" android:textAppearance="@style/TextAppearance.AppCompat.Medium"
app:layout_constraintStart_toStartOf="parent" app:layout_constraintStart_toStartOf="parent"