Only preload non-PDF audio items

This commit is contained in:
Jackson Harper 2022-09-19 18:04:29 +08:00
parent 40adb4c4a8
commit 3b83a8cd84

View file

@ -152,7 +152,7 @@ import Views
// because it will kick off the user's future items being automatically transcribed.
// This happens because when an article is saved, we check if the user has a recent
// listen. If they do, we will automatically transcribe their message.
if let first = newItems.first?.id {
if let first = newItems.filter({ !$0.isPDF }).first?.id {
_ = await audioController.preload(itemIDs: [first])
}
}