From 0b8b543cc9a81270008e698fad2d247f3720ac24 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 7 Jul 2020 11:05:06 -0400 Subject: [PATCH] Better duration display in call --- commands/phone/phone-info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/phone/phone-info.js b/commands/phone/phone-info.js index 70d3db64..a7c50905 100644 --- a/commands/phone/phone-info.js +++ b/commands/phone/phone-info.js @@ -28,7 +28,7 @@ module.exports = class PhoneInfoCommand extends Command { .addField('❯ Recipient Channel', `#${otherChannel.name}`, true) .addField('❯ Recipient Server', otherChannel.guild.name, true) .addField('❯ Recipient ID', otherChannel.id, true) - .addField('❯ Call Duration', moment.duration(Date.now() - call.timeStarted).format('d:hh:mm:ss'), true) + .addField('❯ Call Duration', moment.duration(Date.now() - call.timeStarted).format('hh[h]mm[m]ss[s]'), true) .addField('❯ Admin Call?', call.ownerOrigin ? 'Yes' : 'No', true) .addField('❯ Started By', call.startUser.tag, true); return msg.embed(embed);