Skip to content

Federation between NodeBB and Bookwyrm

Uncategorized
  • Moving a federated post into another topic

    Uncategorized
    1
    0 Stimmen
    1 Beiträge
    0 Aufrufe
    Niemand hat geantwortet
  • 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.
  • 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
  • Speaking of broken models and social contracts.

    Uncategorized
    5
    0 Stimmen
    5 Beiträge
    1 Aufrufe
    julian@community.nodebb.orgJ
    @osma@mas.to the default assumption is that announces are delivered back to the origin server in order to close the loop. However it is not a requirement. For example I am considering not doing so for group announces.
  • 0 Stimmen
    2 Beiträge
    0 Aufrufe
    julian@community.nodebb.orgJ
    @msbellows@c.im but that's not what Elon Musk's supporters are expecting. To extend your metaphor, they're paying a mechanic to pull things out of an engine until it magically runs perfectly. There is no second step.
  • nodebb-plugin-sso-google Remove the dash in username

    Uncategorized
    14
    0 Stimmen
    14 Beiträge
    21 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?
  • 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