File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " twinte-parser" ,
3
- "version" : " 2.2 .0" ,
3
+ "version" : " 2.3 .0" ,
4
4
"description" : " Twinte内部で使用するために開発されたKdBパーサ" ,
5
5
"private" : false ,
6
6
"main" : " dist/index.js" ,
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ const analyzeRow = (columns: string[]) => {
166
166
schedules : [ ] ,
167
167
instructor : columns [ 8 ] ,
168
168
error : false ,
169
- lastUpdate : new Date ( columns [ 16 ] + '+09:00' ) , // JST保証
169
+ lastUpdate : new Date ( columns [ 18 ] + '+09:00' ) , // JST保証
170
170
}
171
171
172
172
const moduleString = columns [ 5 ]
@@ -228,7 +228,7 @@ export default (data: Buffer): Course[] => {
228
228
if ( typeof sheet [ utils . encode_cell ( { r, c : 0 } ) ] === 'undefined' ) break
229
229
230
230
const columns : string [ ] = [ ]
231
- for ( let c = 0 ; c <= 16 ; c ++ )
231
+ for ( let c = 0 ; c <= 18 ; c ++ )
232
232
columns . push ( sheet [ utils . encode_cell ( { r, c } ) ] . v )
233
233
234
234
// 科目番号が空の行はスキップ
You can’t perform that action at this time.
0 commit comments