We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66099fb commit 9ce1101Copy full SHA for 9ce1101
AnkiDroid/src/main/java/com/ichi2/anki/DeckPicker.kt
@@ -1923,6 +1923,17 @@ open class DeckPicker :
1923
}
1924
1925
1926
+ override fun tagMissing(missingMediaNotes: List<Long>?) {
1927
+ if (missingMediaNotes == null) return
1928
+
1929
+ Timber.d("DeckPicker:: Adding missing media tag")
1930
+ launchCatchingTask {
1931
+ withCol {
1932
+ tags.bulkAdd(missingMediaNotes, TR.mediaCheckMissingMediaTag())
1933
+ }
1934
1935
1936
1937
open fun handleDbError() {
1938
Timber.i("Displaying Database Error")
1939
showDatabaseErrorDialog(DatabaseErrorDialogType.DIALOG_LOAD_FAILED)
0 commit comments