Fix incorrect log message, s/favourite/bookmark/ (#3172)
This commit is contained in:
parent
f28252bfd5
commit
7d444d1f8c
2 changed files with 2 additions and 2 deletions
|
@ -129,7 +129,7 @@ abstract class TimelineViewModel(
|
||||||
timelineCases.bookmark(status.actionableId, bookmark).await()
|
timelineCases.bookmark(status.actionableId, bookmark).await()
|
||||||
} catch (t: Exception) {
|
} catch (t: Exception) {
|
||||||
ifExpected(t) {
|
ifExpected(t) {
|
||||||
Log.d(TAG, "Failed to favourite status " + status.actionableId, t)
|
Log.d(TAG, "Failed to bookmark status " + status.actionableId, t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -210,7 +210,7 @@ class ViewThreadViewModel @Inject constructor(
|
||||||
timelineCases.bookmark(status.actionableId, bookmark).await()
|
timelineCases.bookmark(status.actionableId, bookmark).await()
|
||||||
} catch (t: Exception) {
|
} catch (t: Exception) {
|
||||||
ifExpected(t) {
|
ifExpected(t) {
|
||||||
Log.d(TAG, "Failed to favourite status " + status.actionableId, t)
|
Log.d(TAG, "Failed to bookmark status " + status.actionableId, t)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue