>:3

  • 20 Posts
  • 33 Comments
Joined 1 year ago
cake
Cake day: June 1st, 2023

help-circle




  • There’s been a DDoS hitting my host. It’s not directed at us since it’s hitting the /24 subnet. Not sure if you are on my home server, but I suggest getting an alt if you want to get on there, if this is the case. I can’t decouple the Matrix home server from the Burggit VPS because the domain is needed to point at the Burggit VPS.








  • I tried setting subscribed to default like you had and am still not able to duplicate this. I forgot to point out that this is a fresh install, so maybe clearing data/reinstalling the app is in order?

    I primarily use Burggit in a PWA on mobile since it seems to work pretty darn well by default. I’m on Android 13 too if that matters.








  • NSFW images blurred and no longer auto expand.

    The relevant patches need to be applied in lemmy-ui’s source tree (https://github.com/lemmynsfw/lemmy-ui) :

    #src/shared/components/post/post-listing.tsx
    --- post-listing.tsx    2023-12-26 03:43:17.871725423 +0000
    +++ post-listing.tsxd   2024-01-04 20:29:53.433999085 +0000
    @@ -96,7 +96,7 @@
     export class PostListing extends Component {
       state: PostListingState = {
         showEdit: false,
    -    imageExpanded: true,
    +    imageExpanded: false,
         viewSource: false,
         showAdvanced: false,
         showBody: false,
    
    #src/shared/components/common/pictrs-image.tsx
    --- pictrs-image.tsx	2023-12-26 03:43:17.859724985 +0000
    +++ pictrs-image.tsxd	2024-01-04 20:25:41.355154850 +0000
    @@ -26,7 +26,7 @@
       render() {
         const { src, icon, iconOverlay, banner, thumbnail, nsfw, pushup, cardTop } =
           this.props;
    -    let user_blur_nsfw = false;
    +    let user_blur_nsfw = true;
         if (UserService.Instance.myUserInfo) {
           user_blur_nsfw =
             UserService.Instance.myUserInfo?.local_user_view.local_user.blur_nsfw;
    

    If at any point this proves to be a headache to maintain, then we’ll have to explore other options.