mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
PadMessageHandler: Add missing parseNum()
for attribute lookup
This commit is contained in:
parent
a052580bd1
commit
ae1741c25b
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ const handleUserChanges = async (socket, message) => {
|
||||||
op.attribs.split('*').forEach((attr) => {
|
op.attribs.split('*').forEach((attr) => {
|
||||||
if (!attr) return;
|
if (!attr) return;
|
||||||
|
|
||||||
attr = wireApool.getAttrib(attr);
|
attr = wireApool.getAttrib(Changeset.parseNum(attr));
|
||||||
if (!attr) return;
|
if (!attr) return;
|
||||||
|
|
||||||
// the empty author is used in the clearAuthorship functionality so this
|
// the empty author is used in the clearAuthorship functionality so this
|
||||||
|
|
Loading…
Reference in a new issue