Revision 67cc9113 src/gr/grnet/pithos/web/client/commands/RefreshCommand.java

b/src/gr/grnet/pithos/web/client/commands/RefreshCommand.java
45 45

  
46 46
	private PopupPanel containerPanel;
47 47

  
48
    private Pithos app;
48
    Pithos app;
49 49

  
50 50
    private Folder folder;
51 51
    
......
62 62
	public void execute() {
63 63
		if (containerPanel != null)
64 64
			containerPanel.hide();
65
		app.updateFolder(folder, true, null);
65
		app.updateFolder(folder, true, new Command() {
66
			
67
			@Override
68
			public void execute() {
69
				app.updateStatistics();
70
			}
71
		});
66 72
	}
67 73
}

Also available in: Unified diff