Skip to content

Moving a federated post into another topic

Uncategorized
  • A fond farewell to the NFC Ring community

    Uncategorized
    1
    2
    0 Stimmen
    1 Beiträge
    0 Aufrufe
    Niemand hat geantwortet
  • NodeBB on FediDB

    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
  • Change logo size Harmony

    Uncategorized
    2
    0 Stimmen
    2 Beiträge
    1 Aufrufe
    baris@community.nodebb.orgB
    You can simply use the custom CSS tab in the acp and use a different css. [component="brand/logo"] { max-height: 64px; width: auto; } Don't forget to enable custom css switch if you haven't already on the same page.
  • Federation between NodeBB and Bookwyrm

    Uncategorized
    4
    0 Stimmen
    4 Beiträge
    0 Aufrufe
    reynir@forum.fedi.dkR
    Hi! I don't have time to look into this at least for the next three days.
  • 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