1
0
şunun yansıması https://github.com/nextcloud/server.git eşitlendi 2024-08-06 15:06:39 +02:00

Use proper return function

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Bu işleme şunda yer alıyor:
Lukas Reschke 2016-11-21 15:14:32 +01:00
ebeveyn efdef8f801
işleme b6c9029c82
Veri tabanında bu imza için bilinen anahtar bulunamadı
GPG Anahtar Kimliği: B9F6980CF6E759B1

Dosyayı Görüntüle

@ -1524,8 +1524,7 @@ OC.PasswordConfirmation = {
},
requiresPasswordConfirmation: function() {
var timeSinceLogin = moment.now() - nc_lastLogin * 1000;
return timeSinceLogin > 10 * 1000; // 30 minutes
var timeSinceLogin = moment.now() - (nc_lastLogin * 1000);
return timeSinceLogin > 30 * 60 * 1000; // 30 minutes
},