forked from I2P_Developers/i2p.i2p
i2psnark: Fix deletion of single-file torrent outside snark dir (ticket #1544)
This commit is contained in:
@@ -1047,19 +1047,20 @@ public class I2PSnarkServlet extends BasicServlet {
|
||||
File f = new File(name);
|
||||
f.delete();
|
||||
_manager.addMessage(_("Torrent file deleted: {0}", f.getAbsolutePath()));
|
||||
List<List<String>> files = meta.getFiles();
|
||||
String dataFile = snark.getBaseName();
|
||||
f = new File(_manager.getDataDir(), dataFile);
|
||||
if (files == null) { // single file torrent
|
||||
if (f.delete())
|
||||
_manager.addMessage(_("Data file deleted: {0}", f.getAbsolutePath()));
|
||||
else
|
||||
_manager.addMessage(_("Data file could not be deleted: {0}", f.getAbsolutePath()));
|
||||
break;
|
||||
}
|
||||
Storage storage = snark.getStorage();
|
||||
if (storage == null)
|
||||
break;
|
||||
List<List<String>> files = meta.getFiles();
|
||||
if (files == null) { // single file torrent
|
||||
for (File df : storage.getFiles()) {
|
||||
// should be only one
|
||||
if (df.delete())
|
||||
_manager.addMessage(_("Data file deleted: {0}", df.getAbsolutePath()));
|
||||
else
|
||||
_manager.addMessage(_("Data file could not be deleted: {0}", df.getAbsolutePath()));
|
||||
}
|
||||
break;
|
||||
}
|
||||
// step 1 delete files
|
||||
for (File df : storage.getFiles()) {
|
||||
if (df.delete()) {
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2015-05-13 zzz
|
||||
* Console: Fix URLs caught in XSS filter on /confighome (ticket #1569)
|
||||
* i2psnark: Fix deletion of single-file torrent outside snark dir (ticket #1544)
|
||||
* NTCP: Catch race in Reader (ticket #1534)
|
||||
|
||||
2015-02-12 dg
|
||||
* Job Queue/stats: add stat/graph for amount of scheduled jobs (router.tunnelBacklog)
|
||||
* FloodfillMonitorJob:
|
||||
|
||||
@@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 21;
|
||||
public final static long BUILD = 22;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "-rc";
|
||||
|
||||
Reference in New Issue
Block a user