Skip to content

Commit

Permalink
fix: 🐛 channel time offline
Browse files Browse the repository at this point in the history
  • Loading branch information
apotdevin committed May 21, 2020
1 parent bd91df5 commit c380485
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/schemas/query/channels/channels.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export const getChannels = {

return {
...channel,
time_offline: Math.round((channel.time_online || 0) / 1000),
time_offline: Math.round((channel.time_offline || 0) / 1000),
time_online: Math.round((channel.time_online || 0) / 1000),
partner_node_info: {
...nodeInfo,
Expand Down

0 comments on commit c380485

Please sign in to comment.