Browse Source

Don't use deprecated torrent_info fields

adaptive-webui-19844
Vladimir Golovnev (Glassez) 8 years ago
parent
commit
78d6b14fe8
  1. 2
      src/base/bittorrent/torrentinfo.cpp

2
src/base/bittorrent/torrentinfo.cpp

@ -186,7 +186,7 @@ qlonglong TorrentInfo::fileSize(int index) const
qlonglong TorrentInfo::fileOffset(int index) const qlonglong TorrentInfo::fileOffset(int index) const
{ {
if (!isValid()) return -1; if (!isValid()) return -1;
return m_nativeInfo->file_at(index).offset; return m_nativeInfo->files().file_offset(index);
} }
QList<TrackerEntry> TorrentInfo::trackers() const QList<TrackerEntry> TorrentInfo::trackers() const

Loading…
Cancel
Save