Browse Source

Make VideoVersion ID field optional

Tulir Asokan 3 years ago
parent
commit
690eb6ff5f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      mauigpapi/types/thread_item.py

+ 1 - 1
mauigpapi/types/thread_item.py

@@ -123,7 +123,7 @@ class VideoVersion(SerializableAttrs):
     width: int
     height: int
     url: str
-    id: str
+    id: Optional[str] = None
 
 
 class MediaType(SerializableEnum):