diff --git a/src/components/Modals/TorrentDetailModal/Tabs/Info.vue b/src/components/Modals/TorrentDetailModal/Tabs/Info.vue
index a65506fb..b131f7b7 100644
--- a/src/components/Modals/TorrentDetailModal/Tabs/Info.vue
+++ b/src/components/Modals/TorrentDetailModal/Tabs/Info.vue
@@ -134,6 +134,14 @@
{{ torrent.tracker }}
+
+
+ Created By
+ |
+
+ {{ createdBy }}
+ |
+
Comments
@@ -213,6 +221,8 @@
diff --git a/src/services/qbit.js b/src/services/qbit.js
index 6bc72f85..2c3150e8 100644
--- a/src/services/qbit.js
+++ b/src/services/qbit.js
@@ -145,7 +145,7 @@ class Qbit {
getTorrentProperties(hash) {
return this.axios.get('/torrents/properties', {
params: { hash }
- })
+ }).then(res => res.data)
}
// Post
|