File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ const Base = require('./base');
55const Time = require ( './time' ) ;
66
77const regex = / a d d e d ( .* ) o f t i m e s p e n t / i;
8- const subRegex = / s u b s t r a c t e d ( .* ) o f t i m e s p e n t / i;
8+ const subRegex = / s u b t r a c t e d ( .* ) o f t i m e s p e n t / i;
99
1010/**
1111 * base model for models that have times
Original file line number Diff line number Diff line change @@ -109,9 +109,9 @@ class report extends Base {
109109 // collect items, query times & stats
110110 collect . push ( item = new model ( this . config , item ) ) ;
111111 item . getNotes ( )
112- . then ( ( ) => item . times ( ) )
112+ . then ( ( ) => item . getTimes ( ) )
113113 . catch ( error => done ( error ) )
114- . then ( ( ) => item . stats ( ) )
114+ . then ( ( ) => item . getStats ( ) )
115115 . catch ( error => done ( error ) )
116116 . then ( ( ) => {
117117 if ( advance ) advance ( ) ;
You can’t perform that action at this time.
0 commit comments