Opened 13 years ago
Closed 12 years ago
#7795 closed Patch (fixed)
wrong server save for files in queue.sqlite3
Reported by: | Tommy Wu | Owned by: | |
---|---|---|---|
Priority: | normal | Component: | FileZilla Client |
Keywords: | Cc: | ||
Component version: | Operating system type: | ||
Operating system version: |
Description
In 3.5.1 (I don't test the old version).
step 1: launch filezilla, connect to server A, add file A1 to queue.
step 2: connect to server B, add file B1 to queue.
step 3: quit filezilla, use tool to view the data in queue.sqlite3, there's 2 records in servers table (A and B), but in the files table, both 2 records' server field is A (should be one for A and one for B)
Attachments (1)
Change History (4)
comment:1 by , 13 years ago
by , 13 years ago
Attachment: | filezilla_3.5.1_queue_save.patch added |
---|
update the patch for folder item also
comment:2 by , 12 years ago
Type: | Bug report → Patch |
---|
comment:3 by , 12 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
This had already been fixed in version 3.5.2
Note:
See TracTickets
for help on using tickets.
in SaveServer(), it assign serverId to insertFileQuery_, but insertFileQuery_ will be reset at SaveFile().
move this assignment after reset will solve this issue.