| Summary: | Items in transfer to media device queue are not requeue'd after a crash | ||
|---|---|---|---|
| Product: | [Applications] amarok | Reporter: | Christopher Warner <cwarner> |
| Component: | general | Assignee: | Amarok Bugs <amarok-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | 1.4.3 | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Christopher Warner
2006-12-16 18:00:27 UTC
SVN commit 614218 by aumuell:
save media device transfer queue when items are added and after transfers
BUG: 138885
M +2 -0 ChangeLog
M +3 -0 src/mediabrowser.cpp
--- trunk/extragear/multimedia/amarok/ChangeLog #614217:614218
@@ -33,6 +33,8 @@
you move and rename them.
CHANGES:
+ * Save media device transfer queue when adding items or after transfers.
+ (BR 138885)
* Upgraded internal SQLite to 3.3.8.
* MTP media devices are not automatically connected on start-up. This
should solve slow loading times for those with large collections on an
--- trunk/extragear/multimedia/amarok/src/mediabrowser.cpp #614217:614218
@@ -2327,6 +2327,8 @@
&& m_parent->currentDevice()->asynchronousTransfer()
&& !m_parent->currentDevice()->isTransferring() )
m_parent->currentDevice()->transferFiles();
+
+ save( Amarok::saveLocation() + "transferlist.xml" );
}
void
@@ -3118,6 +3120,7 @@
}
m_parent->updateButtons();
+ m_parent->queue()->save( Amarok::saveLocation() + "transferlist.xml" );
m_transferring = false;
if( m_deferredDisconnect )
|