mirror of
https://github.com/NuSkooler/enigma-bbs.git
synced 2025-08-06 01:35:04 +02:00
* Move to uuid vs node-uuid
* Use uuid-parse for to/from string
This commit is contained in:
parent
541489acb0
commit
690d148ad5
6 changed files with 15 additions and 12 deletions
|
@ -23,7 +23,7 @@ const assert = require('assert');
|
|||
const gaze = require('gaze');
|
||||
const fse = require('fs-extra');
|
||||
const iconv = require('iconv-lite');
|
||||
const uuid = require('node-uuid');
|
||||
const uuidV4 = require('uuid/v4');
|
||||
|
||||
exports.moduleInfo = {
|
||||
name : 'FTN BSO',
|
||||
|
@ -834,7 +834,7 @@ function FTNMessageScanTossModule() {
|
|||
//
|
||||
if(Config.messageNetworks.ftn.areas[localAreaTag].allowDupes) {
|
||||
// just generate a UUID & therefor always allow for dupes
|
||||
message.uuid = uuid.v1();
|
||||
message.uuid = uuidV4();
|
||||
}
|
||||
|
||||
callback(null);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue