Skip to content

Commit

Permalink
#13: Default value for maxFileSize should be increased.
Browse files Browse the repository at this point in the history
  • Loading branch information
guusdk committed Oct 9, 2018
1 parent 294b0a6 commit 4b82276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/nl/goodbytes/xmpp/xep0363/SlotManager.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
// TODO: persist internal state to allow for restart survival.
public class SlotManager
{
public static final long DEFAULT_MAX_FILE_SIZE = 5 * 1024 * 1024;
public static final long DEFAULT_MAX_FILE_SIZE = 50 * 1024 * 1024;
private static SlotManager INSTANCE = null;
private final Cache<UUID, Slot> slots;
private long maxFileSize = DEFAULT_MAX_FILE_SIZE;
Expand Down

0 comments on commit 4b82276

Please sign in to comment.