Skip to content

Federation between NodeBB and Bookwyrm

Uncategorized
  • 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')).
  • 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.
  • Speaking of broken models and social contracts.

    Uncategorized
    5
    0 Stimmen
    5 Beiträge
    3 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.
  • 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