mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
- Fix bad ASSERT
- Bump to beta3
This commit is contained in:
parent
91dee6058e
commit
8e2efc2950
2 changed files with 2 additions and 2 deletions
|
@ -211,7 +211,7 @@ QString RssFolder::getName() const {
|
||||||
}
|
}
|
||||||
|
|
||||||
void RssFolder::rename(QString new_name) {
|
void RssFolder::rename(QString new_name) {
|
||||||
Q_ASSERT(parent->contains(new_name));
|
Q_ASSERT(!parent->contains(new_name));
|
||||||
if(!parent->contains(new_name)) {
|
if(!parent->contains(new_name)) {
|
||||||
// Update parent
|
// Update parent
|
||||||
(*parent)[new_name] = parent->take(name);
|
(*parent)[new_name] = parent->take(name);
|
||||||
|
|
|
@ -14,7 +14,7 @@ CONFIG += qt \
|
||||||
network
|
network
|
||||||
|
|
||||||
# Update this VERSION for each release
|
# Update this VERSION for each release
|
||||||
DEFINES += VERSION=\\\"v1.5.0beta2\\\"
|
DEFINES += VERSION=\\\"v1.5.0beta3\\\"
|
||||||
DEFINES += VERSION_MAJOR=1
|
DEFINES += VERSION_MAJOR=1
|
||||||
DEFINES += VERSION_MINOR=5
|
DEFINES += VERSION_MINOR=5
|
||||||
DEFINES += VERSION_BUGFIX=0
|
DEFINES += VERSION_BUGFIX=0
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue