Browse Source

Stop creating Download folder on start

The existence of this folder isn't required to run qbt and it can be
created when adding torrent.
Closes #8290.
adaptive-webui-19844
Chocobo1 7 years ago
parent
commit
6bbcf9b3d6
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 1
      src/base/profile.cpp

1
src/base/profile.cpp

@ -43,7 +43,6 @@ Profile::Profile(Private::Profile *impl, Private::PathConverter *pathConverter)
ensureDirectoryExists(SpecialFolder::Cache); ensureDirectoryExists(SpecialFolder::Cache);
ensureDirectoryExists(SpecialFolder::Config); ensureDirectoryExists(SpecialFolder::Config);
ensureDirectoryExists(SpecialFolder::Data); ensureDirectoryExists(SpecialFolder::Data);
ensureDirectoryExists(SpecialFolder::Downloads);
} }
// to generate correct call to ProfilePrivate::~ProfileImpl() // to generate correct call to ProfilePrivate::~ProfileImpl()

Loading…
Cancel
Save