mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Throw ArgumentException instead of ArgumentNullException on empty Guid.
This commit is contained in:
parent
6ca252ba5c
commit
bd4da93d1e
@ -6193,7 +6193,7 @@ where AncestorIdText not null and ItemValues.Value not null and ItemValues.Type
|
||||
CheckDisposed();
|
||||
if (id == Guid.Empty)
|
||||
{
|
||||
throw new ArgumentNullException(nameof(id));
|
||||
throw new ArgumentException(nameof(id));
|
||||
}
|
||||
|
||||
if (attachments == null)
|
||||
|
Loading…
x
Reference in New Issue
Block a user