Merge pull request #51 from ButterCheezii/no-matcher-hang
Fix insane bug where some profiles cause client hang
This commit is contained in:
commit
37a45c7f64
|
@ -213,7 +213,7 @@ export default class CharacterPreview extends Vue {
|
||||||
updateCustoms(): void {
|
updateCustoms(): void {
|
||||||
this.customs = _.orderBy(
|
this.customs = _.orderBy(
|
||||||
_.map(
|
_.map(
|
||||||
_.reject(this.character!.character.customs || [], (c) => _.isUndefined(c)) as CustomKink[],
|
_.reject(Object.values(this.character!.character.customs ?? []), (c) => _.isUndefined(c)) as CustomKink[],
|
||||||
(c: CustomKink) => _.assign(
|
(c: CustomKink) => _.assign(
|
||||||
{},
|
{},
|
||||||
c,
|
c,
|
||||||
|
|
|
@ -337,9 +337,9 @@ export class Matcher {
|
||||||
return _.map(
|
return _.map(
|
||||||
speciesOptions,
|
speciesOptions,
|
||||||
(species) => {
|
(species) => {
|
||||||
const nc = _.cloneDeep(c);
|
// Avoid _.cloneDeep because it chokes on array-like objects with very large keys
|
||||||
|
// _.cloneDeep will happily make arrays with 41 million elements
|
||||||
nc.infotags[TagId.Species] = { string: species };
|
const nc = {...c, infotags: {...c.infotags, [TagId.Species]: {string: species}}};
|
||||||
|
|
||||||
return { character: nc, analysis: new CharacterAnalysis(nc) };
|
return { character: nc, analysis: new CharacterAnalysis(nc) };
|
||||||
}
|
}
|
||||||
|
@ -975,18 +975,14 @@ export class Matcher {
|
||||||
private getAllStandardKinks(c: Character): { [key: number]: KinkChoice } {
|
private getAllStandardKinks(c: Character): { [key: number]: KinkChoice } {
|
||||||
const kinks = _.pickBy(c.kinks, _.isString);
|
const kinks = _.pickBy(c.kinks, _.isString);
|
||||||
|
|
||||||
_.each(
|
// Avoid using _.forEach on c.customs because lodash thinks it is an array
|
||||||
c.customs,
|
for (const custom of Object.values(c.customs)) {
|
||||||
(custom: any) => {
|
if (custom) {
|
||||||
if (!custom) {
|
const children = (custom as any).children ?? {};
|
||||||
return;
|
|
||||||
|
_.each(children, (child) => kinks[child] = custom.choice);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
const children = (custom.children) ? custom.children : {};
|
|
||||||
|
|
||||||
_.each(children, (child) => kinks[child] = custom.choice);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
return kinks as any;
|
return kinks as any;
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,22 @@ export class WorkerStore implements PermanentIndexedStore {
|
||||||
|
|
||||||
|
|
||||||
async getProfile(name: string): Promise<ProfileRecord | undefined> {
|
async getProfile(name: string): Promise<ProfileRecord | undefined> {
|
||||||
return this.workerClient.request('get', { name });
|
const record: ProfileRecord | undefined = await this.workerClient.request('get', { name });
|
||||||
|
|
||||||
|
// fix custom kinks to prevent hangs
|
||||||
|
|
||||||
|
if (record && Array.isArray(record.profileData.character.customs)) {
|
||||||
|
// fix customs because it will crash the client
|
||||||
|
const customsObject: ProfileRecord['profileData']['character']['customs'] = {};
|
||||||
|
|
||||||
|
for (const [key, value] of Object.entries(record.profileData.character.customs)) {
|
||||||
|
if (value !== undefined) customsObject[key] = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
record.profileData.character.customs = customsObject;
|
||||||
|
}
|
||||||
|
|
||||||
|
return record;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue