mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-01-07 00:20:08 +02:00
Fix #515 - set resolve to false when searching accounts
This commit is contained in:
parent
59472e7f67
commit
0bcb4e0fca
3 changed files with 18 additions and 1 deletions
|
@ -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) {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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>
|
Loading…
Reference in a new issue