BCLib Syncing fixes
This commit is contained in:
parent
59fcaf6ee9
commit
617573ca09
3 changed files with 4 additions and 4 deletions
|
@ -52,7 +52,7 @@ public class SendFiles extends DataHandler.FromServer {
|
|||
@Override
|
||||
protected void serializeDataOnServer(FriendlyByteBuf buf) {
|
||||
List<AutoFileSyncEntry> existingFiles = files.stream()
|
||||
.filter(e -> e.fileName.exists())
|
||||
.filter(e -> e!=null &&e.fileName!=null && e.fileName.exists())
|
||||
.collect(Collectors.toList());
|
||||
/*
|
||||
//this will try to send a file that was not registered or requested by the client
|
||||
|
|
|
@ -151,7 +151,7 @@ public class ProgressScreen extends GridScreen implements ProgressListener {
|
|||
@Override
|
||||
public void progressStart(Component component) {
|
||||
this.progressStage(component);
|
||||
this.progressStagePercentage(30);
|
||||
this.progressStagePercentage(0);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue