fix corrupted url entry
This commit is contained in:
parent
5c0178b2f2
commit
4c996358a5
|
@ -1223,7 +1223,6 @@ function resolveRedirects () {
|
||||||
var target = row.targetRow - 1
|
var target = row.targetRow - 1
|
||||||
if ( path == 'mainpage' ) {
|
if ( path == 'mainpage' ) {
|
||||||
mainPage.target = target
|
mainPage.target = target
|
||||||
continue
|
|
||||||
}
|
}
|
||||||
|
|
||||||
yield new ResolvedRedirect ( row.id, nameSpace, path, title, target, row.revision )
|
yield new ResolvedRedirect ( row.id, nameSpace, path, title, target, row.revision )
|
||||||
|
@ -1367,7 +1366,7 @@ function getHeader () {
|
||||||
return buf
|
return buf
|
||||||
}
|
}
|
||||||
|
|
||||||
function stroreHeader() {
|
function storeHeader() {
|
||||||
var buf = Buffer.concat([ getHeader(), getMimeTypes() ])
|
var buf = Buffer.concat([ getHeader(), getMimeTypes() ])
|
||||||
var fd = fs.openSync( outPath, 'r+' )
|
var fd = fs.openSync( outPath, 'r+' )
|
||||||
fs.writeSync( fd, buf, 0, buf.length, 0 )
|
fs.writeSync( fd, buf, 0, buf.length, 0 )
|
||||||
|
@ -1523,7 +1522,7 @@ function finalise () {
|
||||||
return Promise.coroutine( function* () {
|
return Promise.coroutine( function* () {
|
||||||
header.checksumPos = yield out.close() // close the output stream
|
header.checksumPos = yield out.close() // close the output stream
|
||||||
yield indexerDb.close()
|
yield indexerDb.close()
|
||||||
yield stroreHeader()
|
yield storeHeader()
|
||||||
yield calculateFileHash()
|
yield calculateFileHash()
|
||||||
}) ()
|
}) ()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user