Commit 0bcb4e0f authored by Thomas's avatar Thomas
Browse files

Fix #515 - set resolve to false when searching accounts

parent 59472e7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -293,7 +293,7 @@ public class StatusCache {
        values.put(Sqlite.COL_INSTANCE, statusCache.instance);
        values.put(Sqlite.COL_SLUG, slug);
        values.put(Sqlite.COL_STATUS_ID, statusCache.status_id);
        if (type != null) {
        if (statusCache.type != null) {
            values.put(Sqlite.COL_TYPE, statusCache.type.getValue());
        }
        if (statusCache.status != null) {
+16 −0
Original line number Diff line number Diff line
@@ -71,6 +71,22 @@
            app:iconTint="@color/cyanea_accent_dark_reference"
            app:strokeColor="@color/cyanea_accent_dark_reference" />


        <com.google.android.material.button.MaterialButton
            android:id="@+id/domain_block"
            style="@style/Widget.MaterialComponents.Button.OutlinedButton"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="24dp"
            android:paddingVertical="12dp"
            android:text="@string/blocked_domains"
            android:textAlignment="textStart"
            android:textColor="@color/cyanea_accent_dark_reference"
            app:icon="@drawable/ic_baseline_navigate_next_24"
            app:iconGravity="end"
            app:iconTint="@color/cyanea_accent_dark_reference"
            app:strokeColor="@color/cyanea_accent_dark_reference" />

    </androidx.appcompat.widget.LinearLayoutCompat>

    <androidx.fragment.app.FragmentContainerView
+1 −0
Original line number Diff line number Diff line
@@ -1906,4 +1906,5 @@
    <string name="notif_signed_up">Signed up</string>
    <string name="Suggestions">Suggestions</string>
    <string name="not_interested">Not interested</string>
    <string name="blocked_domains">Blocked domains</string>
</resources>
 No newline at end of file