14 lines
556 B
Text
14 lines
556 B
Text
PR 5424 - fix from upstream
|
|
Index: cli/cli.cc
|
|
--- cli/cli.cc.orig
|
|
+++ cli/cli.cc
|
|
@@ -257,7 +257,8 @@ int tr_main(int argc, char* argv[])
|
|
|
|
tr_ctorSetPaused(ctor, TR_FORCE, false);
|
|
|
|
- if (tr_ctorSetMetainfoFromFile(ctor, torrentPath, nullptr) || tr_ctorSetMetainfoFromMagnetLink(ctor, torrentPath, nullptr))
|
|
+ if (tr_sys_path_exists(torrentPath) ? tr_ctorSetMetainfoFromFile(ctor, torrentPath, nullptr) :
|
|
+ tr_ctorSetMetainfoFromMagnetLink(ctor, torrentPath, nullptr))
|
|
{
|
|
// all good
|
|
}
|