Fix "nil passed to a callee that requires a non-null 1st parameter" (#4084)

This commit is contained in:
A Cœur
2022-11-07 23:57:35 +08:00
committed by GitHub
parent 69ee92113f
commit 91e5cf31f6

View File

@@ -61,7 +61,7 @@ typedef NS_ENUM(unsigned int, filePriorityMenuTag) { //
{
_torrent = torrent;
[self.fFileList setArray:_torrent.fileList];
[self.fFileList setArray:torrent.fileList ?: @[]];
self.filterText = nil;