seyfert 2.1.1-dev-12401435957.0 → 2.1.1-dev-12404125172.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cache/index.js +2 -2
- package/package.json +1 -1
package/lib/cache/index.js
CHANGED
|
@@ -194,7 +194,7 @@ class Cache {
|
|
|
194
194
|
relationshipsData[hashId] = [];
|
|
195
195
|
}
|
|
196
196
|
relationshipsData[hashId].push(id);
|
|
197
|
-
if (type !== 'overwrites') {
|
|
197
|
+
if (type !== 'overwrites' && type !== 'messages') {
|
|
198
198
|
data.guild_id = guildId;
|
|
199
199
|
}
|
|
200
200
|
allData.push([this[type].hashId(id), this[type].parse(data, id, guildId)]);
|
|
@@ -264,7 +264,7 @@ class Cache {
|
|
|
264
264
|
relationshipsData[hashId] = [];
|
|
265
265
|
}
|
|
266
266
|
relationshipsData[hashId].push(id);
|
|
267
|
-
if (type !== 'overwrites') {
|
|
267
|
+
if (type !== 'overwrites' && type !== 'messages') {
|
|
268
268
|
data.guild_id = guildId;
|
|
269
269
|
}
|
|
270
270
|
allData.push([this[type].hashId(id), this[type].parse(data, id, guildId)]);
|