Skip to content

Change logo size Harmony

Uncategorized
  • Re: Sending a private message without cc causes a 500 error

    Uncategorized
    1
    0 Stimmen
    1 Beiträge
    0 Aufrufe
    Niemand hat geantwortet
  • How to modify the "url" item in config.json?

    Uncategorized
    5
    0 Stimmen
    5 Beiträge
    2 Aufrufe
    baris@community.nodebb.orgB
    Should be /usr/src/app
  • Moving a federated post into another topic

    Uncategorized
    2
    0 Stimmen
    2 Beiträge
    1 Aufrufe
    K
    Does it just disallow the post move? Or does it do something wacky? I ran into an interesting hiccup just now while experimenting with merging remote topics, where it allowed the merge, but the new merged post was totally broken (triggered a TypeError: Cannot read properties of undefined (reading 'name')).
  • 0 Stimmen
    10 Beiträge
    0 Aufrufe
    julian@community.nodebb.orgJ
    @jwildeboer@social.wildeboer.net Right, there's a possible social engineering vector at play here, which I think makes this a little concerning. I certainly don't like my time wasted either cc @thisismissem@hachyderm.io @mariusor@metalhead.club
  • nodebb-plugin-sso-google Remove the dash in username

    Uncategorized
    14
    0 Stimmen
    14 Beiträge
    24 Aufrufe
    bh4-tech@community.nodebb.orgB
    @julian src/slugify.js requires public/src/modules/slugify, so I changes the slugify function in that file to return function slugify(str, preserveCase) { if (!str) { return ''; } str = String(str).replace(trimRegex, ''); if (isLatin.test(str)) { str = str.replace(invalidLatinChars, '_'); } else { str = XRegExp.replace(str, invalidUnicodeChars, '_'); } str = !preserveCase ? str.toLocaleLowerCase() : str; str = str.replace(collapseWhitespace, '_'); str = str.replace(collapseDash, '_'); str = str.replace(trimTrailingDash, ''); str = str.replace(trimLeadingDash, ''); return str; }; , basically replaced the dashes with underscore. I then stopped my current instance, upgraded it and then started it. However, now I registered a user using the google-sso plugin and again it has a dash in username instead of underscore. I guess we need to log the username somewhere in the plugin/core nodebb to find the problem. Which would be the best place for doing so?
  • Went and Broke Federation. Kinda.

    Uncategorized
    8
    0 Stimmen
    8 Beiträge
    5 Aufrufe
    julian@community.nodebb.orgJ
    @Kichae thanks! Looks like an issue to look into. https://github.com/NodeBB/NodeBB/issues/13201
  • New federated testing instance for NodeBB

    Uncategorized
    8
    0 Stimmen
    8 Beiträge
    4 Aufrufe
    julian@community.nodebb.orgJ
    @shoppingtonz@mastodon.social if edits from PieFed aren't reflected here that may be a bug.
  • @activitypub

    Uncategorized
    7
    0 Stimmen
    7 Beiträge
    0 Aufrufe
    julian@community.nodebb.orgJ
    @kirk@social.coop just wanted to drop a note that your two issues have not been forgotten