mirror of
https://github.com/schlagmichdoch/PairDrop.git
synced 2026-04-21 22:54:53 +08:00
generate unique peer names
use unique-names-generator to generate peer names instead of relying on UA. This prevents confusion when there are multiple clients on the network with same UA.
This commit is contained in:
committed by
PaulSzymanski
parent
ff42ee1a3e
commit
0c7abfbf1d
@@ -1,4 +1,5 @@
|
||||
const parser = require('ua-parser-js');
|
||||
const { uniqueNamesGenerator } = require('unique-names-generator');
|
||||
|
||||
class SnapdropServer {
|
||||
|
||||
@@ -187,7 +188,8 @@ class Peer {
|
||||
model: ua.device.model,
|
||||
os: ua.os.name,
|
||||
browser: ua.browser.name,
|
||||
type: ua.device.type
|
||||
type: ua.device.type,
|
||||
displayName: uniqueNamesGenerator({ length: 2 })
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user