mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-02-27 16:50:59 +01:00
fix(backup): fixed file link url
This commit is contained in:
@@ -68,8 +68,6 @@
|
||||
mtDebug.info(items);
|
||||
vm.buildPager();
|
||||
});
|
||||
|
||||
mtDebug.info(vm.backupConfig.dir);
|
||||
};
|
||||
|
||||
/**
|
||||
|
||||
@@ -30,9 +30,7 @@
|
||||
<tbody>
|
||||
<tr class="message-item" ng-repeat="f in vm.pagedItems">
|
||||
<td class="td-v-middle">
|
||||
<a href="{{vm.backupConfig.dir.substr(1)}}{{f.name}}"
|
||||
target="_self"
|
||||
ng-click="vm.DLS.downloadBackupFile(f.name); $event.preventDefault(); $event.stopPropagation();">{{f.name}}</a>
|
||||
<a href="/api/backup/{{f.name}}" target="_self">{{f.name}}</a>
|
||||
</td>
|
||||
<td class="td-v-middle text-center">
|
||||
{{f.size | bytes}}
|
||||
|
||||
Reference in New Issue
Block a user