Update: Increase torrent from 30% to 60%

This commit is contained in:
zzz
2013-11-25 15:34:49 +00:00
parent 60aa8c57a4
commit dbdf36d85c

View File

@ -93,8 +93,9 @@ public class ConsoleUpdateManager implements UpdateManager {
// For 0.9.5 update, only for dev builds and 1% more
// For 0.9.6 update, only for dev builds and 3% more
// For 0.9.8 update, only for dev builds and 30% more
// For 0.9.10 update, only for dev builds and 60% more
// Remove this for 100%
_allowTorrent = RouterVersion.BUILD != 0 || _context.random().nextInt(100) < 30;
_allowTorrent = RouterVersion.BUILD != 0 || _context.random().nextInt(100) < 60;
}
public static ConsoleUpdateManager getInstance() {