mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
Fix "nil passed to a callee that requires a non-null 1st parameter" (#4084)
This commit is contained in:
parent
69ee92113f
commit
91e5cf31f6
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue