Skip to content
Update Expressions authored by l3uddz's avatar l3uddz
...@@ -29,6 +29,7 @@ type ReleaseInfo struct { ...@@ -29,6 +29,7 @@ type ReleaseInfo struct {
ReleaseTime string ReleaseTime string
TorrentName string TorrentName string
TorrentURL string TorrentURL string
TorrentId string
SizeString string SizeString string
SizeBytes int64 SizeBytes int64
Category string Category string
...@@ -36,9 +37,12 @@ type ReleaseInfo struct { ...@@ -36,9 +37,12 @@ type ReleaseInfo struct {
Resolution string Resolution string
Container string Container string
Origin string Origin string
Source string
Tags string Tags string
Files []string Files []string
FreeLeech bool
} }
``` ```
The `Files` array will initially only ever be populated when bencode has been enabled for the releases associated tracker. The `Files` array will initially only ever be populated when bencode has been enabled for the releases associated tracker.
... ...
......