Originally created by @PrivatePuffin on GitHub (Jan 30, 2020).
Subject of the issue
Currently Icons are not cached client side, it would be nice if this gets made possible.
Expected behaviour
Icons are not a big risk being cached client side, expected would be that icons are client-cached by default or at least client-side icon caching is enabled using the web headers.
Actual behaviour
No icons are cached because the following header is set on the icons: cache-control: no-cache, no-store, max-age=0
Originally created by @PrivatePuffin on GitHub (Jan 30, 2020).
### Subject of the issue
Currently Icons are not cached client side, it would be nice if this gets made possible.
### Expected behaviour
Icons are not a big risk being cached client side, expected would be that icons are client-cached by default or at least client-side icon caching is enabled using the web headers.
### Actual behaviour
No icons are cached because the following header is set on the icons:
`cache-control: no-cache, no-store, max-age=0`
@dani-garcia commented on GitHub (Jan 30, 2020):
Oh this makes perfect sense! Implemented in https://github.com/dani-garcia/bitwarden_rs/commit/ebb36235a70a2c539a7656454de3478ae776aa22 thanks!
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @PrivatePuffin on GitHub (Jan 30, 2020).
Subject of the issue
Currently Icons are not cached client side, it would be nice if this gets made possible.
Expected behaviour
Icons are not a big risk being cached client side, expected would be that icons are client-cached by default or at least client-side icon caching is enabled using the web headers.
Actual behaviour
No icons are cached because the following header is set on the icons:
cache-control: no-cache, no-store, max-age=0@dani-garcia commented on GitHub (Jan 30, 2020):
Oh this makes perfect sense! Implemented in https://github.com/dani-garcia/bitwarden_rs/commit/ebb36235a70a2c539a7656454de3478ae776aa22 thanks!
@PrivatePuffin commented on GitHub (Jan 30, 2020):
Thats... fast!
Thanks!